From bd5ac982774bb37141d0d594afef3a457464473b Mon Sep 17 00:00:00 2001 From: Manuel Klimek Date: Thu, 28 Feb 2013 18:12:44 +0000 Subject: [PATCH] Fix a problem where 'clang' is ambiguous in MSVC builds. llvm-svn: 176275 --- clang/include/clang/AST/RecursiveASTVisitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/RecursiveASTVisitor.h b/clang/include/clang/AST/RecursiveASTVisitor.h index 4b5e19e..480263e 100644 --- a/clang/include/clang/AST/RecursiveASTVisitor.h +++ b/clang/include/clang/AST/RecursiveASTVisitor.h @@ -1712,7 +1712,7 @@ bool RecursiveASTVisitor::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())); } -- 2.7.4