diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-07-05 19:34:19 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-07-05 19:34:19 +0000 |
commit | 5603df45df0c7fb2c2fd7771c080e04bd98f6eca (patch) | |
tree | e58d4154cd07ecadafb5292ccc4bc699d9a9786c /clang/lib/Sema/SemaExpr.cpp | |
parent | 97c1343c455d7dba9e47d1c91ce4da9a1b9bfbc1 (diff) | |
download | bcm5719-llvm-5603df45df0c7fb2c2fd7771c080e04bd98f6eca.tar.gz bcm5719-llvm-5603df45df0c7fb2c2fd7771c080e04bd98f6eca.zip |
Use SmallVectorImpl& for function arguments instead of SmallVector.
llvm-svn: 185715
Diffstat (limited to 'clang/lib/Sema/SemaExpr.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 40aeefbf975..c35c1b4e644 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -3919,7 +3919,7 @@ bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, const FunctionProtoType *Proto, unsigned FirstProtoArg, ArrayRef<Expr *> Args, - SmallVector<Expr *, 8> &AllArgs, + SmallVectorImpl<Expr *> &AllArgs, VariadicCallType CallType, bool AllowExplicit, bool IsListInitialization) { |