diff options
| -rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 45f96d33b7b..91e8695dba5 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -836,7 +836,7 @@ private:        // Either we've emitted all the call args, or we have a call to a         // variadic function. -      assert(Arg == ArgEnd || CallArgTypeInfo->isVariadic() &&  +      assert((Arg == ArgEnd || CallArgTypeInfo->isVariadic()) &&                "Extra arguments in non-variadic function!");      }  | 

