forked from OSchip/llvm-project
Fix a problem where 'clang' is ambiguous in MSVC builds.
llvm-svn: 176275
This commit is contained in:
parent
7170f3fc54
commit
bd5ac98277
|
@ -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()));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue