On Thu, Feb 28, 2013 at 10:12 AM, Manuel Klimek <[email protected]> wrote:
> 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.

um... just out of curiosity what was the ambiguity?

>
> 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()));
>    }
>
>
>
> _______________________________________________
> cfe-commits mailing list
> [email protected]
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to