r176275 - Fix a problem where 'clang' is ambiguous in MSVC builds.

Manuel Klimek klimek at google.com
Thu Feb 28 10:12:44 PST 2013


Author: klimek
Date: Thu Feb 28 12:12:44 2013
New Revision: 176275

URL: http://llvm.org/viewvc/llvm-project?rev=176275&view=rev
Log:
Fix a problem where 'clang' is ambiguous in MSVC builds.

Modified:
    cfe/trunk/include/clang/AST/RecursiveASTVisitor.h

Modified: cfe/trunk/include/clang/AST/RecursiveASTVisitor.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/RecursiveASTVisitor.h?rev=176275&r1=176274&r2=176275&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/RecursiveASTVisitor.h (original)
+++ cfe/trunk/include/clang/AST/RecursiveASTVisitor.h Thu Feb 28 12:12:44 2013
@@ -1712,7 +1712,7 @@ bool RecursiveASTVisitor<Derived>::Trave
   // 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()));
   }
 





More information about the cfe-commits mailing list