summaryrefslogtreecommitdiff
path: root/include/clang/Sema/Sema.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-05-09 23:45:53 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-05-09 23:45:53 +0000
commit8e6b7093c840ddd4054523333b5a0d3262c3c2c2 (patch)
tree22615c29fd2f36447fd626fcfda52fc25a18445b /include/clang/Sema/Sema.h
parent7297a2ecbf97db3153088660e15be1eb296d4659 (diff)
downloadclang-8e6b7093c840ddd4054523333b5a0d3262c3c2c2.tar.gz
clang-8e6b7093c840ddd4054523333b5a0d3262c3c2c2.tar.bz2
clang-8e6b7093c840ddd4054523333b5a0d3262c3c2c2.tar.xz
ArrayRef'ize Sema::FindAllocationOverload
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181563 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/Sema.h')
-rw-r--r--include/clang/Sema/Sema.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h
index c4dd54e934..d68d948f2c 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -3984,8 +3984,8 @@ public:
FunctionDecl *&OperatorNew,
FunctionDecl *&OperatorDelete);
bool FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
- DeclarationName Name, Expr** Args,
- unsigned NumArgs, DeclContext *Ctx,
+ DeclarationName Name, MultiExprArg Args,
+ DeclContext *Ctx,
bool AllowMissing, FunctionDecl *&Operator,
bool Diagnose = true);
void DeclareGlobalNewDelete();