diff options
author | Manuel Klimek <klimek@google.com> | 2013-01-10 11:52:21 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-01-10 11:52:21 +0000 |
commit | bb42bf1a8bfd18fa2beec7fcbcb73f738fb455ba (patch) | |
tree | 0764c85a4a442a13ef3caa2d3d3c818db37d0758 /lib/Format/UnwrappedLineParser.h | |
parent | 5cf7cf317f684dc61b8a0e4476440b5635b80db4 (diff) |
Fix layout of blocks inside statements.
Previously, we would not indent:
SOME_MACRO({
int i;
});
correctly. This is fixed by adding the trailing }); to the unwrapped
line starting with SOME_MACRO({, so the formatter can correctly match
the braces and indent accordingly.
Also fixes incorrect parsing of initializer lists, like:
int a[] = { 1 };
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Format/UnwrappedLineParser.h')
-rw-r--r-- | lib/Format/UnwrappedLineParser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Format/UnwrappedLineParser.h b/lib/Format/UnwrappedLineParser.h index 16ad37eec6..017daf587f 100644 --- a/lib/Format/UnwrappedLineParser.h +++ b/lib/Format/UnwrappedLineParser.h @@ -131,6 +131,7 @@ private: void parsePPUnknown(); void parseComments(); void parseStructuralElement(); + void parseBracedList(); void parseParens(); void parseIfThenElse(); void parseForOrWhileLoop(); @@ -163,6 +164,8 @@ private: const FormatStyle &Style; FormatTokenSource *Tokens; UnwrappedLineConsumer &Callback; + + friend class ScopedLineState; }; } // end namespace format |