From: Krasimir Georgiev Date: Tue, 27 Jun 2017 13:58:41 +0000 (+0000) Subject: [clang-format] Fix a buildbot failure after r306406 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f35ace32588a824d065275d7774ffac1d9b91ea;p=clang [clang-format] Fix a buildbot failure after r306406 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@306408 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/UnwrappedLineParser.cpp b/lib/Format/UnwrappedLineParser.cpp index 261ae3030d..ba3a4c17ee 100644 --- a/lib/Format/UnwrappedLineParser.cpp +++ b/lib/Format/UnwrappedLineParser.cpp @@ -1180,7 +1180,8 @@ void UnwrappedLineParser::parseStructuralElement() { parseBracedList(); else if (Style.Language == FormatStyle::LK_Proto && FormatTok->Tok.is(tok::less)) - parseBracedList(/*ClosingBraceKind=*/tok::greater); + parseBracedList(/*ContinueOnSemicolons=*/false, + /*ClosingBraceKind=*/tok::greater); break; case tok::l_square: parseSquare();