AST/ExprConstant.cpp: Silence a warning on ms cl.exe. "bool" does not prefer to be compared to integer.

llvm-svn: 149059
This commit is contained in:
NAKAMURA Takumi 2012-01-26 09:37:36 +00:00
parent d0a41fead3
commit b8efa1e091
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ static void describeCall(CallStackFrame *Frame, llvm::raw_ostream &Out) {
for (FunctionDecl::param_const_iterator I = Frame->Callee->param_begin(),
E = Frame->Callee->param_end(); I != E; ++I, ++ArgIndex) {
if (ArgIndex > IsMemberCall)
if (ArgIndex > (unsigned)IsMemberCall)
Out << ", ";
const ParmVarDecl *Param = *I;