diff options
author | Krasimir Georgiev <krasimir@google.com> | 2017-09-26 14:58:29 +0000 |
---|---|---|
committer | Krasimir Georgiev <krasimir@google.com> | 2017-09-26 14:58:29 +0000 |
commit | a84e78700f9646ed8754b525cdf257a1efda1275 (patch) | |
tree | 1498eb0acf85f73f790fa43b3853637aea42eb27 /clang/lib/Format/Format.cpp | |
parent | 9db6e861acca66f2f38bce1b5031230a4c48aee6 (diff) | |
download | bcm5719-llvm-a84e78700f9646ed8754b525cdf257a1efda1275.tar.gz bcm5719-llvm-a84e78700f9646ed8754b525cdf257a1efda1275.zip |
[clang-format] Add ext/ to google include categories
Summary: This adds an ext/ header include category for google style.
Reviewers: djasper
Reviewed By: djasper
Subscribers: cfe-commits, klimek
Differential Revision: https://reviews.llvm.org/D38243
llvm-svn: 314211
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r-- | clang/lib/Format/Format.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index 0b70ce2e671..cb0a0105127 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -665,7 +665,8 @@ FormatStyle getGoogleStyle(FormatStyle::LanguageKind Language) { GoogleStyle.AlwaysBreakTemplateDeclarations = true; GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true; GoogleStyle.DerivePointerAlignment = true; - GoogleStyle.IncludeCategories = {{"^<.*\\.h>", 1}, {"^<.*", 2}, {".*", 3}}; + GoogleStyle.IncludeCategories = { + {"^<ext/.*\\.h>", 2}, {"^<.*\\.h>", 1}, {"^<.*", 2}, {".*", 3}}; GoogleStyle.IncludeIsMainRegex = "([-_](test|unittest))?$"; GoogleStyle.IndentCaseLabels = true; GoogleStyle.KeepEmptyLinesAtTheStartOfBlocks = false; |