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
llvm-svn: 61820
diff --git a/clang/lib/Parse/ParseExprCXX.cpp b/clang/lib/Parse/ParseExprCXX.cpp
index 88ca915..d05c002 100644
--- a/clang/lib/Parse/ParseExprCXX.cpp
+++ b/clang/lib/Parse/ParseExprCXX.cpp
@@ -526,7 +526,7 @@
return true;
}
- while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec));
+ while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec)) ;
return false;
}