summaryrefslogtreecommitdiff
path: root/include/clang/Sema/Sema.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-05-05 19:42:09 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-05-05 19:42:09 +0000
commit287f24d3991994b9a263af9e2a873f4feadfb8fa (patch)
tree803e06051c02d98e1a9158bc9d2370985d6df0e1 /include/clang/Sema/Sema.h
parentb98cf79a3add5c80b40a956a4cd3d9b3a23b9b22 (diff)
downloadclang-287f24d3991994b9a263af9e2a873f4feadfb8fa.tar.gz
clang-287f24d3991994b9a263af9e2a873f4feadfb8fa.tar.bz2
clang-287f24d3991994b9a263af9e2a873f4feadfb8fa.tar.xz
ArrayRef'ize Sema::CheckObjCMethodCall
Patch by Robert Wilhelm. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/Sema.h')
-rw-r--r--include/clang/Sema/Sema.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h
index f851a7a35f..d7c80f2e4f 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -7384,7 +7384,7 @@ private:
bool CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall,
const FunctionProtoType *Proto);
bool CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation loc,
- Expr **Args, unsigned NumArgs);
+ ArrayRef<const Expr *> Args);
bool CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall,
const FunctionProtoType *Proto);
void CheckConstructorCall(FunctionDecl *FDecl,