Fix compiler warning about to false -> pointer conversion; patch by Dimitry Andric!

llvm-svn: 105328
This commit is contained in:
Daniel Dunbar 2010-06-02 15:47:03 +00:00
parent f7ced25a2a
commit 6906b04457
1 changed files with 1 additions and 1 deletions

View File

@ -1851,7 +1851,7 @@ Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
// will be consumed.
Result = ParseCastExpression(false/*isUnaryExpression*/,
false/*isAddressofOperand*/,
NotCastExpr, false);
NotCastExpr, 0/*TypeOfCast*/);
}
// If we parsed a cast-expression, it's really a type-id, otherwise it's