@@ -8031,7 +8031,8 @@ AST_MATCHER_P(ImplicitCastExpr, hasImplicitDestinationType,
80318031// / \endcode
80328032// / \compile_args{-std=c++}
80338033// / The matcher \matcher{tagDecl(isStruct())} matches \match{struct S},
8034- // / but does not match \nomatch{class C}, \nomatch{union U} or \nomatch{enum E {}}.
8034+ // / but does not match \nomatch{class C}, \nomatch{union U} or
8035+ // / \nomatch{enum E {}}.
80358036AST_MATCHER (TagDecl, isStruct) {
80368037 return Node.isStruct ();
80378038}
@@ -8046,8 +8047,9 @@ AST_MATCHER(TagDecl, isStruct) {
80468047// / enum E {};
80478048// / \endcode
80488049// / \compile_args{-std=c++}
8049- // / The matcher \matcher{tagDecl(isUnion())} matches \match{union U}, but does
8050- // / not match \nomatch{struct S}, \nomatch{class C} or \nomatch{enum E {}}.
8050+ // / The matcher \matcher{tagDecl(isUnion())} matches \match{union U},
8051+ // / but does not match \nomatch{struct S}, \nomatch{class C} or
8052+ // / \nomatch{enum E {}}.
80518053AST_MATCHER (TagDecl, isUnion) {
80528054 return Node.isUnion ();
80538055}
@@ -8062,8 +8064,9 @@ AST_MATCHER(TagDecl, isUnion) {
80628064// / enum E {};
80638065// / \endcode
80648066// / \compile_args{-std=c++}
8065- // / The matcher \matcher{tagDecl(isClass())} matches \match{class C}, but does
8066- // / not match \nomatch{struct S}, \nomatch{union U} or \nomatch{enum E {}}.
8067+ // / The matcher \matcher{tagDecl(isClass())} matches \match{class C},
8068+ // / but does not match \nomatch{struct S}, \nomatch{union U} or
8069+ // / \nomatch{enum E {}}.
80678070AST_MATCHER (TagDecl, isClass) {
80688071 return Node.isClass ();
80698072}
0 commit comments