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();


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to