r176275 - Fix a problem where 'clang' is ambiguous in MSVC builds.
David Blaikie
dblaikie at gmail.com
Thu Feb 28 11:06:27 PST 2013
On Thu, Feb 28, 2013 at 10:12 AM, Manuel Klimek <klimek at google.com> 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
> cfe-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
More information about the cfe-commits
mailing list