[clang] 415d9e8 - [ASTMatcher] Fix typos in LibASTMatchersReference.html
via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 12 06:35:01 PDT 2023
Author: dingfei
Date: 2023-08-12T21:33:43+08:00
New Revision: 415d9e8ca39c0b42f351cc532ccfb48b6ac97f7f
URL: https://github.com/llvm/llvm-project/commit/415d9e8ca39c0b42f351cc532ccfb48b6ac97f7f
DIFF: https://github.com/llvm/llvm-project/commit/415d9e8ca39c0b42f351cc532ccfb48b6ac97f7f.diff
LOG: [ASTMatcher] Fix typos in LibASTMatchersReference.html
Added:
Modified:
clang/docs/LibASTMatchersReference.html
Removed:
################################################################################
diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html
index d30e151edae05b..4b87f157a9c2ce 100644
--- a/clang/docs/LibASTMatchersReference.html
+++ b/clang/docs/LibASTMatchersReference.html
@@ -2531,12 +2531,12 @@ <h2 id="decl-matchers">Node Matchers</h2>
class array {
T data[Size];
};
-dependentSizedArrayType
+dependentSizedArrayType()
matches "T data[Size]"
</pre></td></tr>
-<tr><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('dependentSizedExtVectorType')"><a name="dependentSizedExtVectorType0Anchor">dependentSizedExtVectorType</a></td><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1DependentSizedExtVectorType.html">DependentSizedExtVectorType</a>>...</td></tr>
+<tr><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('dependentSizedExtVectorType0')"><a name="dependentSizedExtVectorType0Anchor">dependentSizedExtVectorType</a></td><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1DependentSizedExtVectorType.html">DependentSizedExtVectorType</a>>...</td></tr>
<tr><td colspan="4" class="doc" id="dependentSizedExtVectorType0"><pre>Matches C++ extended vector type where either the type or size is dependent.
Given
@@ -2544,7 +2544,7 @@ <h2 id="decl-matchers">Node Matchers</h2>
class vector {
typedef T __attribute__((ext_vector_type(Size))) type;
};
-dependentSizedExtVectorType
+dependentSizedExtVectorType()
matches "T __attribute__((ext_vector_type(Size)))"
</pre></td></tr>
More information about the cfe-commits
mailing list