<div dir="ltr"><div style="font-family:arial,sans-serif;font-size:13px">279>.\llvm\tools\clang\include\clang/AST/RecursiveASTVisitor.h(1715) : error C2872: 'clang' : ambiguous symbol</div><div style="font-family:arial,sans-serif;font-size:13px">
279>        could be 'clang'</div><div style="font-family:arial,sans-serif;font-size:13px">279>        or       'clang::ento::clang'</div><div style="font-family:arial,sans-serif;font-size:13px">279>        .\llvm\tools\clang\include\clang/AST/RecursiveASTVisitor.h(1688) : while compiling class template member function 'bool clang::RecursiveASTVisitor<Derived>::TraverseFunctionHelper(clang::FunctionDecl *)'</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        with</div><div style="font-family:arial,sans-serif;font-size:13px">279>        [</div><div style="font-family:arial,sans-serif;font-size:13px">279>            Derived=clang::ASTContext::ParentMapASTVisitor</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        ]</div><div style="font-family:arial,sans-serif;font-size:13px">279>        .\llvm\tools\clang\include\clang/AST/RecursiveASTVisitor.h(1840) : while compiling class template member function 'bool clang::RecursiveASTVisitor<Derived>::TraverseGCCAsmStmt(clang::GCCAsmStmt *)'</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        with</div><div style="font-family:arial,sans-serif;font-size:13px">279>        [</div><div style="font-family:arial,sans-serif;font-size:13px">279>            Derived=clang::ASTContext::ParentMapASTVisitor</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        ]</div><div style="font-family:arial,sans-serif;font-size:13px">279>        .\llvm\tools\clang\include\clang/AST/RecursiveASTVisitor.h(522) : while compiling class template member function 'bool clang::RecursiveASTVisitor<Derived>::TraverseStmt(clang::Stmt *)'</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        with</div><div style="font-family:arial,sans-serif;font-size:13px">279>        [</div><div style="font-family:arial,sans-serif;font-size:13px">279>            Derived=clang::ASTContext::ParentMapASTVisitor</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        ]</div><div style="font-family:arial,sans-serif;font-size:13px">279>        .\llvm\tools\clang\include\clang/AST/ASTContext.h(2202) : see reference to class template instantiation 'clang::RecursiveASTVisitor<Derived>' being compiled</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        with</div><div style="font-family:arial,sans-serif;font-size:13px">279>        [</div><div style="font-family:arial,sans-serif;font-size:13px">279>            Derived=clang::ASTContext::ParentMapASTVisitor</div>
<div style="font-family:arial,sans-serif;font-size:13px">279>        ]</div><div style="font-family:arial,sans-serif;font-size:13px">275>   Creating library .\llvm\build\lib\Debug\clang-check.lib and object .\llvm\build\lib\Debug\clang-check.exp</div>
<div style="font-family:arial,sans-serif;font-size:13px">2</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Feb 28, 2013 at 8:06 PM, David Blaikie <span dir="ltr"><<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Thu, Feb 28, 2013 at 10:12 AM, Manuel Klimek <<a href="mailto:klimek@google.com">klimek@google.com</a>> wrote:<br>

> Author: klimek<br>
> Date: Thu Feb 28 12:12:44 2013<br>
> New Revision: 176275<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=176275&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=176275&view=rev</a><br>
> Log:<br>
> Fix a problem where 'clang' is ambiguous in MSVC builds.<br>
<br>
</div>um... just out of curiosity what was the ambiguity?<br>
<div class="HOEnZb"><div class="h5"><br>
><br>
> Modified:<br>
>     cfe/trunk/include/clang/AST/RecursiveASTVisitor.h<br>
><br>
> Modified: cfe/trunk/include/clang/AST/RecursiveASTVisitor.h<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/RecursiveASTVisitor.h?rev=176275&r1=176274&r2=176275&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/RecursiveASTVisitor.h?rev=176275&r1=176274&r2=176275&view=diff</a><br>

> ==============================================================================<br>
> --- cfe/trunk/include/clang/AST/RecursiveASTVisitor.h (original)<br>
> +++ cfe/trunk/include/clang/AST/RecursiveASTVisitor.h Thu Feb 28 12:12:44 2013<br>
> @@ -1712,7 +1712,7 @@ bool RecursiveASTVisitor<Derived>::Trave<br>
>    // FunctionNoProtoType or FunctionProtoType, or a typedef.  This<br>
>    // also covers the return type and the function parameters,<br>
>    // including exception specifications.<br>
> -  if (clang::TypeSourceInfo *TSI = D->getTypeSourceInfo()) {<br>
> +  if (TypeSourceInfo *TSI = D->getTypeSourceInfo()) {<br>
>      TRY_TO(TraverseTypeLoc(TSI->getTypeLoc()));<br>
>    }<br>
><br>
><br>
><br>
> _______________________________________________<br>
> cfe-commits mailing list<br>
> <a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</div></div></blockquote></div><br></div>