Address review feedback from r226306. No intended behavior change.

llvm-svn: 226363
This commit is contained in:
Nico Weber 2015-01-17 02:26:40 +00:00
parent eb303ee5df
commit f56c85bc06
1 changed files with 2 additions and 2 deletions

View File

@ -2533,8 +2533,8 @@ void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
// Parse the next declarator.
DeclaratorInfo.clear();
VS.clear();
BitfieldSize = nullptr;
Init = true;
BitfieldSize = ExprResult(/*Invalid=*/false);
Init = ExprResult(/*Invalid=*/false);
HasInitializer = false;
DeclaratorInfo.setCommaLoc(CommaLoc);