We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e0c24f commit 9ce6290Copy full SHA for 9ce6290
clang/include/clang/ASTMatchers/ASTMatchers.h
@@ -8081,8 +8081,9 @@ AST_MATCHER(TagDecl, isClass) {
8081
/// enum E {};
8082
/// \endcode
8083
/// \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}.
+/// The matcher \matcher{tagDecl(isEnum())} matches \match{enum E {}},
+/// but does not match \nomatch{struct S}, \nomatch{class C} or
8086
+/// \nomatch{union U}.
8087
AST_MATCHER(TagDecl, isEnum) {
8088
return Node.isEnum();
8089
}
0 commit comments