Skip to content

Commit 9ce6290

Browse files
committed
fix formatting
1 parent 0e0c24f commit 9ce6290

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/include/clang/ASTMatchers/ASTMatchers.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8081,8 +8081,9 @@ AST_MATCHER(TagDecl, isClass) {
80818081
/// enum E {};
80828082
/// \endcode
80838083
/// \compile_args{-std=c++}
8084-
/// The matcher \matcher{tagDecl(isEnum())} matches \match{enum E {}}, but does not
8085-
/// match \nomatch{struct S}, \nomatch{class C} or \nomatch{union U}.
8084+
/// The matcher \matcher{tagDecl(isEnum())} matches \match{enum E {}},
8085+
/// but does not match \nomatch{struct S}, \nomatch{class C} or
8086+
/// \nomatch{union U}.
80868087
AST_MATCHER(TagDecl, isEnum) {
80878088
return Node.isEnum();
80888089
}

0 commit comments

Comments
 (0)