diff options
author | Alexander Kornienko <alexfh@google.com> | 2013-12-10 15:46:42 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2013-12-10 15:46:42 +0000 |
commit | 763ec2ba4525fa828ac5f351101b8f788dd6f6e7 (patch) | |
tree | a0c19111dde0665b38895d1ed9827a99fc44138b /clang/lib/Format/Format.cpp | |
parent | fe7a57fa780144c89c81e2a0cf4401af8d347891 (diff) | |
download | bcm5719-llvm-763ec2ba4525fa828ac5f351101b8f788dd6f6e7.tar.gz bcm5719-llvm-763ec2ba4525fa828ac5f351101b8f788dd6f6e7.zip |
Remove IndentBlocks, which sneaked winto the previous commit
llvm-svn: 196929
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r-- | clang/lib/Format/Format.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index 4225178405c..808e64db915 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -256,7 +256,6 @@ FormatStyle getLLVMStyle() { LLVMStyle.Cpp11BracedListStyle = false; LLVMStyle.DerivePointerBinding = false; LLVMStyle.ExperimentalAutoDetectBinPacking = false; - LLVMStyle.IndentBlocks = false; LLVMStyle.IndentCaseLabels = false; LLVMStyle.IndentFunctionDeclarationAfterType = false; LLVMStyle.IndentWidth = 2; @@ -363,7 +362,6 @@ FormatStyle getGNUStyle() { Style.BreakBeforeBraces = FormatStyle::BS_Allman; Style.BreakBeforeTernaryOperators = true; Style.ColumnLimit = 79; - Style.IndentBlocks = true; Style.SpaceBeforeParens = FormatStyle::SBPO_Always; return Style; } |