diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-08-25 08:44:16 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-08-25 08:44:16 +0000 |
commit | 62c78d54bee499dd87f768f48b21c9b5ec15e516 (patch) | |
tree | ad008abed42b4aa274b97453b9fcd789121ebeef /lib/Sema/Sema.cpp | |
parent | 781472fe99a120098c631b0cbe33c89f8cef5e70 (diff) |
Rename *PendingImplicitInstantiations to *PendingInstantiations. No
functionality changed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.cpp')
-rw-r--r-- | lib/Sema/Sema.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/Sema.cpp b/lib/Sema/Sema.cpp index 2320d7dc32..6143492ea7 100644 --- a/lib/Sema/Sema.cpp +++ b/lib/Sema/Sema.cpp @@ -300,7 +300,7 @@ void Sema::ActOnEndOfTranslationUnit() { // common behavior for C++ compilers, it is technically wrong. In the // future, we either need to be able to filter the results of name lookup // or we need to perform template instantiations earlier. - PerformPendingImplicitInstantiations(); + PerformPendingInstantiations(); /// If DefinedUsedVTables ends up marking any virtual member /// functions it might lead to more pending template |