summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2013-02-28 18:12:44 +0000
committerManuel Klimek <klimek@google.com>2013-02-28 18:12:44 +0000
commitbd5ac982774bb37141d0d594afef3a457464473b (patch)
tree1bf337cadebe5ccc4ca4726d898195ddd0524c23
parent7170f3fc54b611974a1deebbe0f2a26d39ea6959 (diff)
downloadbcm5719-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.h2
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()));
}
OpenPOWER on IntegriCloud