aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-01-06 19:17:58 +0000
committerTed Kremenek <kremenek@apple.com>2009-01-06 19:17:58 +0000
commitb8006e50bf378ddbab9601c1fa07f151ac538ff3 (patch)
tree402295519bb09621c3ccba4449e8129cb019ea93
parenta21362d16c9f0a4f8ba6b0ebf248cb7965c11966 (diff)
Add whitespace to silence the following warning in a Release build: warning: suggest a space before ';' or explicit braces around empty body in 'while' statement
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61820 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Parse/ParseExprCXX.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseExprCXX.cpp b/lib/Parse/ParseExprCXX.cpp
index 88ca915714..d05c00292d 100644
--- a/lib/Parse/ParseExprCXX.cpp
+++ b/lib/Parse/ParseExprCXX.cpp
@@ -526,7 +526,7 @@ bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
return true;
}
- while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec));
+ while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec)) ;
return false;
}