From: Manuel Klimek Date: Thu, 28 Feb 2013 18:12:44 +0000 (+0000) Subject: Fix a problem where 'clang' is ambiguous in MSVC builds. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd5ac982774bb37141d0d594afef3a457464473b;p=platform%2Fupstream%2Fllvm.git Fix a problem where 'clang' is ambiguous in MSVC builds. llvm-svn: 176275 --- 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())); }