diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.clang-format b/.clang-format index d825df6f..8b3158bb 100644 --- a/.clang-format +++ b/.clang-format @@ -47,12 +47,10 @@ DisableFormat: false ExperimentalAutoDetectBinPacking: false ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] IncludeCategories: - - Regex: '^"(llvm|llvm-c|clang|clang-c)/' - Priority: 2 - - Regex: '^(<|"(gtest|isl|json)/)' - Priority: 3 - - Regex: '.*' + - Regex: '<.*>' Priority: 1 + - Regex: '.*' + Priority: 2 IndentCaseLabels: false IndentWidth: 4 IndentWrappedFunctionNames: false |