aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Sema/Sema.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-02-22 09:38:11 +0000
committerBill Wendling <isanbard@gmail.com>2012-02-22 09:38:11 +0000
commit4fe5be028b723fedc28bb33be96cde1ab2574ee6 (patch)
treeb95e6a6f98d1cd52f0934bb4bc0d78e35afc3e69 /include/clang/Sema/Sema.h
parent795b10062c2eaffae9e04241fb1a73cdbcb24a37 (diff)
ArrayRef-icize the function arguments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151151 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 d908937b63..19db26dd5a 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -4496,7 +4496,7 @@ public:
/// \param Unexpanded the set of unexpanded parameter packs.
void DiagnoseUnexpandedParameterPacks(SourceLocation Loc,
UnexpandedParameterPackContext UPPC,
- const SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
+ ArrayRef<UnexpandedParameterPack> Unexpanded);
/// \brief If the given type contains an unexpanded parameter pack,
/// diagnose the error.