clang-format: Normalize headers presentation

By using clang-format directives 'IncludeBlocks' and 'IncludeCategories'
headers are regrouped by categories:
1. "cmConfigure.h" which must be first
2. header matching current implementation file
3. standard language headers
4. CMake replacement ones
5. external  headers (i.e. #include directive with '<' and '>')
6. Qt headers
7. cmsys/* headers
8. cm_* headers
9. CMake headers (i.e. starting with 'cm[A-Z]')
10. all other headers

Fixes: #19674
This commit is contained in:
Marc Chevrier
2019-09-21 16:38:38 +02:00
committed by Brad King
parent 42ef28b4f3
commit 185fe49f29
11 changed files with 44 additions and 4 deletions
@@ -1,6 +1,8 @@
// clang-format off
#include "pch.h"
#include "CubeRenderer.h"
// clang-format on
using namespace DirectX;
using namespace Microsoft::WRL;