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 | 8ddfb0b72d0e439d01759c1bc7a79ba73dd2830c (patch) | |
tree | de4c2ba248694ef9c44068f08d8165c140e64742 | |
parent | 809d1f1f808ca2eba3f7c9631f673554d31e7f31 (diff) |
Fix a problem where 'clang' is ambiguous in MSVC builds.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176275 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/RecursiveASTVisitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/RecursiveASTVisitor.h b/include/clang/AST/RecursiveASTVisitor.h index 4b5e19e733..480263e943 100644 --- a/include/clang/AST/RecursiveASTVisitor.h +++ b/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())); } |