Skip to content

Commit e3f434c

Browse files
committed
clang-format
1 parent d55c5af commit e3f434c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

clang/include/clang/AST/DynamicRecursiveASTVisitor.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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.

clang/lib/AST/DynamicRecursiveASTVisitor.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,8 @@ bool DynamicRecursiveASTVisitorBase<Const>::TraverseLambdaCapture(
331331
}
332332

333333
template <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
371372
namespace clang {
372373
template class DynamicRecursiveASTVisitorBase<false>;
373374
template class DynamicRecursiveASTVisitorBase<true>;
374-
}
375+
} // namespace clang

0 commit comments

Comments
 (0)