summaryrefslogtreecommitdiffstats
path: root/clang/docs/LibASTMatchersReference.html
diff options
context:
space:
mode:
authorEric Liu <ioeric@google.com>2018-02-21 14:22:42 +0000
committerEric Liu <ioeric@google.com>2018-02-21 14:22:42 +0000
commit09ee48e2afedeaa5d082c6d2b98c263fea7a22aa (patch)
treefd8904494df6750de88339b79dd32fe1c96a6d13 /clang/docs/LibASTMatchersReference.html
parent5bd90e2db1906df9d47a36ac4dd8cc5b4328ee5e (diff)
downloadbcm5719-llvm-09ee48e2afedeaa5d082c6d2b98c263fea7a22aa.tar.gz
bcm5719-llvm-09ee48e2afedeaa5d082c6d2b98c263fea7a22aa.zip
[ASTMatchers] Regenerate documentation after r325678
llvm-svn: 325682
Diffstat (limited to 'clang/docs/LibASTMatchersReference.html')
-rw-r--r--clang/docs/LibASTMatchersReference.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html
index a807672121b..0a9fcceb0b5 100644
--- a/clang/docs/LibASTMatchersReference.html
+++ b/clang/docs/LibASTMatchersReference.html
@@ -2376,6 +2376,8 @@ Given
template &lt;typename T&gt; class X {}; class A {}; X&lt;A&gt; x;
or
template &lt;typename T&gt; class X {}; class A {}; template class X&lt;A&gt;;
+or
+ template &lt;typename T&gt; class X {}; class A {}; extern template class X&lt;A&gt;;
cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
matches the template instantiation of X&lt;A&gt;.
@@ -2913,6 +2915,8 @@ Given
template &lt;typename T&gt; class X {}; class A {}; X&lt;A&gt; x;
or
template &lt;typename T&gt; class X {}; class A {}; template class X&lt;A&gt;;
+or
+ template &lt;typename T&gt; class X {}; class A {}; extern template class X&lt;A&gt;;
cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
matches the template instantiation of X&lt;A&gt;.
@@ -3873,6 +3877,8 @@ Given
template &lt;typename T&gt; class X {}; class A {}; X&lt;A&gt; x;
or
template &lt;typename T&gt; class X {}; class A {}; template class X&lt;A&gt;;
+or
+ template &lt;typename T&gt; class X {}; class A {}; extern template class X&lt;A&gt;;
cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
matches the template instantiation of X&lt;A&gt;.
OpenPOWER on IntegriCloud