forked from OSchip/llvm-project
Renamed traverseDecl to TraverseDecl in a test
RecursiveASTVisitor expects TraverseDecl to be implemented by subclasses.
This commit is contained in:
parent
05c7dc6648
commit
0406b4fab9
|
@ -17,7 +17,7 @@ struct TypeNameVisitor : TestVisitor<TypeNameVisitor> {
|
|||
|
||||
// ValueDecls are the least-derived decl with both a qualtype and a
|
||||
// name.
|
||||
bool traverseDecl(Decl *D) {
|
||||
bool TraverseDecl(Decl *D) {
|
||||
return true; // Always continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue