Remove redundant semicolons which are null statements.

llvm-svn: 163546
This commit is contained in:
Dmitri Gribenko
2012-09-10 21:20:09 +00:00
parent 5a72a23a70
commit 76bb5cabfa
13 changed files with 13 additions and 13 deletions

View File

@@ -223,7 +223,7 @@ bool clang::analyze_format_string::ParsePrintfString(FormatStringHandler &H,
// Did a fail-stop error of any kind occur when parsing the specifier?
// If so, don't do any more processing.
if (FSR.shouldStop())
return true;;
return true;
// Did we exhaust the string or encounter an error that
// we can recover from?
if (!FSR.hasValue())