summaryrefslogtreecommitdiffstats
path: root/docs/LibASTMatchersReference.html
diff options
context:
space:
mode:
authorClement Courbet <courbet@google.com>2018-03-21 10:48:00 +0000
committerClement Courbet <courbet@google.com>2018-03-21 10:48:00 +0000
commit2eb7a8389d602d7764dde0dfb07b0b500fb87f26 (patch)
tree3fa9355c05cd03f2e79ab37b5f24b20a742b5ef2 /docs/LibASTMatchersReference.html
parentca0d0cedb61e9d56baf1ea1cd83ae16817e578ef (diff)
[ASTMatchers] Regenerate doc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@328086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LibASTMatchersReference.html')
-rw-r--r--docs/LibASTMatchersReference.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html
index 21e6f918ed..cc6cd40bd2 100644
--- a/docs/LibASTMatchersReference.html
+++ b/docs/LibASTMatchersReference.html
@@ -4353,7 +4353,7 @@ with hasAnyArgument(...)
For ObjectiveC, given
@interface I - (void) f:(int) y; @end
- void foo(I *i) { [i f:12] }
+ void foo(I *i) { [i f:12]; }
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
matches [i f:12]
</pre></td></tr>
@@ -4706,7 +4706,7 @@ with hasAnyArgument(...)
For ObjectiveC, given
@interface I - (void) f:(int) y; @end
- void foo(I *i) { [i f:12] }
+ void foo(I *i) { [i f:12]; }
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
matches [i f:12]
</pre></td></tr>
@@ -5659,7 +5659,7 @@ with hasAnyArgument(...)
For ObjectiveC, given
@interface I - (void) f:(int) y; @end
- void foo(I *i) { [i f:12] }
+ void foo(I *i) { [i f:12]; }
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
matches [i f:12]
</pre></td></tr>