tweak to (hopefully) fix darwin[89] buildbots. Thanks to Doug for the suggested modification.

llvm-svn: 104188
This commit is contained in:
Jim Grosbach 2010-05-19 23:53:08 +00:00
parent 20fab456da
commit db061516be
1 changed files with 1 additions and 1 deletions

View File

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