Fix a problem where 'clang' is ambiguous in MSVC builds.
authorManuel Klimek <klimek@google.com>
Thu, 28 Feb 2013 18:12:44 +0000 (18:12 +0000)
committerManuel Klimek <klimek@google.com>
Thu, 28 Feb 2013 18:12:44 +0000 (18:12 +0000)
llvm-svn: 176275

clang/include/clang/AST/RecursiveASTVisitor.h

index 4b5e19e..480263e 100644 (file)
@@ -1712,7 +1712,7 @@ bool RecursiveASTVisitor<Derived>::TraverseFunctionHelper(FunctionDecl *D) {
   // FunctionNoProtoType or FunctionProtoType, or a typedef.  This
   // also covers the return type and the function parameters,
   // including exception specifications.
-  if (clang::TypeSourceInfo *TSI = D->getTypeSourceInfo()) {
+  if (TypeSourceInfo *TSI = D->getTypeSourceInfo()) {
     TRY_TO(TraverseTypeLoc(TSI->getTypeLoc()));
   }