Skip to content

Commit f88fb96

Browse files
committed
Regenerate docs
1 parent 509b6bd commit f88fb96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/docs/LibASTMatchersReference.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7239,9 +7239,9 @@ <h2 id="traversal-matchers">AST Traversal Matchers</h2>
72397239
void z(Y y, X x) { y.m(); x.m(); x.g(); (g()).m(); }
72407240
cxxMemberCallExpr(onImplicitObjectArgument(hasType(
72417241
cxxRecordDecl(hasName("Y")))))
7242-
matches `y.m()`, `x.m()` and (g()).m(), but not `x.g()`.
7242+
matches `y.m()`, `x.m()` and (`g()).m()`, but not `x.g()`).
72437243
cxxMemberCallExpr(on(callExpr()))
7244-
does not match `(g()).m()`, because the parens are not ignored.
7244+
only matches `(g()).m()` (the parens are ignored).
72457245

72467246
FIXME: Overload to allow directly matching types?
72477247
</pre></td></tr>

0 commit comments

Comments
 (0)