From: Ted Kremenek Date: Tue, 6 Jan 2009 19:17:58 +0000 (+0000) Subject: Add whitespace to silence the following warning in a Release build: warning: suggest... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8006e50bf378ddbab9601c1fa07f151ac538ff3;p=clang 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 --- 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; }