diff options
author | Andrew Ng <anng.sw@gmail.com> | 2019-02-26 14:34:49 +0000 |
---|---|---|
committer | Andrew Ng <anng.sw@gmail.com> | 2019-02-26 14:34:49 +0000 |
commit | 301f304949ad3e5cd3e56f1999f1c4abae6d6ead (patch) | |
tree | 46fa9c39b54de951d40fea837d8f6060d09a5171 /clang/lib/Format/TokenAnnotator.cpp | |
parent | 60ec08f0678f172b3bd08b4a7a82eccb3a950cfe (diff) | |
download | bcm5719-llvm-301f304949ad3e5cd3e56f1999f1c4abae6d6ead.tar.gz bcm5719-llvm-301f304949ad3e5cd3e56f1999f1c4abae6d6ead.zip |
[clang-format] SpaceBeforeParens for lambda expressions
Add support for lambda expressions to the SpaceBeforeParens formatting
option.
Differential Revision: https://reviews.llvm.org/D58241
llvm-svn: 354880
Diffstat (limited to 'clang/lib/Format/TokenAnnotator.cpp')
-rw-r--r-- | clang/lib/Format/TokenAnnotator.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index c7ddbf5926a..9f4e1802a88 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -2547,7 +2547,9 @@ bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line, (!Left.Previous || Left.Previous->isNot(tok::period))))) || (Style.SpaceBeforeParens == FormatStyle::SBPO_Always && (Left.is(tok::identifier) || Left.isFunctionLikeKeyword() || - Left.is(tok::r_paren)) && + Left.is(tok::r_paren) || + (Left.is(tok::r_square) && Left.MatchingParen && + Left.MatchingParen->is(TT_LambdaLSquare))) && Line.Type != LT_PreprocessorDirective); } if (Left.is(tok::at) && Right.Tok.getObjCKeywordID() != tok::objc_not_keyword) |