Skip to content
Snippets Groups Projects
Commit 17a752be authored by David Majnemer's avatar David Majnemer
Browse files

try to fix the MSVC build

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@273651 91177308-0d34-0410-b5e6-96231b3b80d8
parent 21f6189c
No related branches found
No related tags found
No related merge requests found
...@@ -1831,8 +1831,9 @@ bool RecursiveASTVisitor<Derived>::TraverseFunctionHelper(FunctionDecl *D) { ...@@ -1831,8 +1831,9 @@ bool RecursiveASTVisitor<Derived>::TraverseFunctionHelper(FunctionDecl *D) {
// if the traverser is visiting implicit code. Parameter variable // if the traverser is visiting implicit code. Parameter variable
// declarations do not have valid TypeSourceInfo, so to visit them // declarations do not have valid TypeSourceInfo, so to visit them
// we need to traverse the declarations explicitly. // we need to traverse the declarations explicitly.
for (ParmVarDecl *Parameter : D->parameters()) for (ParmVarDecl *Parameter : D->parameters()) {
TRY_TO(TraverseDecl(Parameter)); TRY_TO(TraverseDecl(Parameter));
}
} }
if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(D)) { if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(D)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment