diff options
Diffstat (limited to 'lib/AST/CommentBriefParser.cpp')
-rw-r--r-- | lib/AST/CommentBriefParser.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/AST/CommentBriefParser.cpp b/lib/AST/CommentBriefParser.cpp index a56d79bda7..bc9244a693 100644 --- a/lib/AST/CommentBriefParser.cpp +++ b/lib/AST/CommentBriefParser.cpp @@ -81,10 +81,8 @@ std::string BriefParser::Parse() { if (isBlockCommand(Name)) { // We found an implicit paragraph end. InFirstParagraph = false; - if (InBrief) { - InBrief = false; + if (InBrief) break; - } } } @@ -97,10 +95,8 @@ std::string BriefParser::Parse() { ConsumeToken(); // We found a paragraph end. InFirstParagraph = false; - if (InBrief) { - InBrief = false; + if (InBrief) break; - } } continue; } |