[cfe-commits] r104188 - /cfe/trunk/lib/Sema/TreeTransform.h

Jim Grosbach grosbach at apple.com
Wed May 19 16:53:08 PDT 2010


Author: grosbach
Date: Wed May 19 18:53:08 2010
New Revision: 104188

URL: http://llvm.org/viewvc/llvm-project?rev=104188&view=rev
Log:
tweak to (hopefully) fix darwin[89] buildbots. Thanks to Doug for the suggested modification.

Modified:
    cfe/trunk/lib/Sema/TreeTransform.h

Modified: cfe/trunk/lib/Sema/TreeTransform.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/TreeTransform.h?rev=104188&r1=104187&r2=104188&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/TreeTransform.h (original)
+++ cfe/trunk/lib/Sema/TreeTransform.h Wed May 19 18:53:08 2010
@@ -3252,7 +3252,7 @@
     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();





More information about the cfe-commits mailing list