diff options
author | Daniel Jasper <djasper@google.com> | 2015-06-02 15:31:37 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-06-02 15:31:37 +0000 |
commit | 1feab0f95ea0202f95a555a86f5dd60db4a8a5c8 (patch) | |
tree | 88879d8c065059459f7b63fc92661c52c6c511bb /clang/lib/Format | |
parent | f85028359dd5a25deadc497de3c314612b1f404a (diff) | |
download | bcm5719-llvm-1feab0f95ea0202f95a555a86f5dd60db4a8a5c8.tar.gz bcm5719-llvm-1feab0f95ea0202f95a555a86f5dd60db4a8a5c8.zip |
clang-format: Don't try to detect C++ lambdas in other languages.
llvm-svn: 238845
Diffstat (limited to 'clang/lib/Format')
-rw-r--r-- | clang/lib/Format/UnwrappedLineParser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp index 83cbe7642cb..826b40d3f83 100644 --- a/clang/lib/Format/UnwrappedLineParser.cpp +++ b/clang/lib/Format/UnwrappedLineParser.cpp @@ -911,6 +911,10 @@ void UnwrappedLineParser::parseStructuralElement() { } bool UnwrappedLineParser::tryToParseLambda() { + if (Style.Language != FormatStyle::LK_Cpp) { + nextToken(); + return false; + } // FIXME: This is a dirty way to access the previous token. Find a better // solution. if (!Line->Tokens.empty() && |