diff options
author | Manuel Klimek <klimek@google.com> | 2013-02-28 18:12:44 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-02-28 18:12:44 +0000 |
commit | bd5ac982774bb37141d0d594afef3a457464473b (patch) | |
tree | 1bf337cadebe5ccc4ca4726d898195ddd0524c23 | |
parent | 7170f3fc54b611974a1deebbe0f2a26d39ea6959 (diff) | |
download | bcm5719-llvm-bd5ac982774bb37141d0d594afef3a457464473b.tar.gz bcm5719-llvm-bd5ac982774bb37141d0d594afef3a457464473b.zip |
Fix a problem where 'clang' is ambiguous in MSVC builds.
llvm-svn: 176275
-rw-r--r-- | clang/include/clang/AST/RecursiveASTVisitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/RecursiveASTVisitor.h b/clang/include/clang/AST/RecursiveASTVisitor.h index 4b5e19e7332..480263e9438 100644 --- a/clang/include/clang/AST/RecursiveASTVisitor.h +++ b/clang/include/clang/AST/RecursiveASTVisitor.h @@ -1712,7 +1712,7 @@ bool RecursiveASTVisitor<Derived>::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())); } |