File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,8 @@ template <bool IsConst> class DynamicRecursiveASTVisitorBase {
134134 // / Recursively visit a C++ nested-name-specifier.
135135 // /
136136 // / \returns false if the visitation was terminated early, true otherwise.
137- virtual bool TraverseNestedNameSpecifier (MaybeConst<NestedNameSpecifier> *NNS);
137+ virtual bool
138+ TraverseNestedNameSpecifier (MaybeConst<NestedNameSpecifier> *NNS);
138139
139140 // / Recursively visit a C++ nested-name-specifier with location
140141 // / information.
Original file line number Diff line number Diff line change @@ -331,7 +331,8 @@ bool DynamicRecursiveASTVisitorBase<Const>::TraverseLambdaCapture(
331331}
332332
333333template <bool Const>
334- bool DynamicRecursiveASTVisitorBase<Const>::dataTraverseNode(MaybeConst<Stmt> *S) {
334+ bool DynamicRecursiveASTVisitorBase<Const>::dataTraverseNode(
335+ MaybeConst<Stmt> *S) {
335336 return Impl<Const>(*this )
336337 .template RecursiveASTVisitor <Impl<Const>>::dataTraverseNode (
337338 const_cast <Stmt *>(S), nullptr );
@@ -371,4 +372,4 @@ bool DynamicRecursiveASTVisitorBase<Const>::dataTraverseNode(MaybeConst<Stmt> *S
371372namespace clang {
372373template class DynamicRecursiveASTVisitorBase <false >;
373374template class DynamicRecursiveASTVisitorBase <true >;
374- }
375+ } // namespace clang
You can’t perform that action at this time.
0 commit comments