forked from OSchip/llvm-project
Fix compiler warning about to false -> pointer conversion; patch by Dimitry Andric!
llvm-svn: 105328
This commit is contained in:
parent
f7ced25a2a
commit
6906b04457
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue