diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-05-19 23:53:08 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-05-19 23:53:08 +0000 |
commit | 9cbb4d81b98ee84795e267d51c1fa530ef6723bf (patch) | |
tree | c6442a5daebe11eeb4ae7618349e7730f9a1638d | |
parent | b65a45835afcc93fa99e22b14b4c9734c261d831 (diff) |
tweak to (hopefully) fix darwin[89] buildbots. Thanks to Doug for the suggested modification.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104188 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Sema/TreeTransform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/TreeTransform.h b/lib/Sema/TreeTransform.h index 69994cd1d2..7ef23290d8 100644 --- a/lib/Sema/TreeTransform.h +++ b/lib/Sema/TreeTransform.h @@ -3252,7 +3252,7 @@ TreeTransform<Derived>::TransformElaboratedType(TypeLocBuilder &TLB, TemplateSpecializationTypeLoc OldNamedTL = cast<TemplateSpecializationTypeLoc>(TL.getNamedTypeLoc()); const TemplateSpecializationType* OldTST - = OldNamedTL.getType()->getAs<TemplateSpecializationType>(); + = OldNamedTL.getType()->template getAs<TemplateSpecializationType>(); NamedT = TransformTemplateSpecializationType(OldTST, ObjectType); if (NamedT.isNull()) return QualType(); |