CommentBriefParser: remove dead store. Found by Clang Analyzer.

llvm-svn: 159673
This commit is contained in:
Dmitri Gribenko 2012-07-03 18:10:20 +00:00
parent 1e8dffdf27
commit 767ea0ff4a
1 changed files with 2 additions and 6 deletions

View File

@ -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;
}