Fix a problem where 'clang' is ambiguous in MSVC builds.

llvm-svn: 176275
This commit is contained in:
Manuel Klimek 2013-02-28 18:12:44 +00:00
parent 7170f3fc54
commit bd5ac98277
1 changed files with 1 additions and 1 deletions

View File

@ -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()));
}