diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index d30e151edae05..4b87f157a9c2c 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/docs/LibASTMatchersReference.html @@ -2531,12 +2531,12 @@

Node Matchers

class array { T data[Size]; }; -dependentSizedArrayType +dependentSizedArrayType() matches "T data[Size]" -Matcher<Type>dependentSizedExtVectorTypeMatcher<DependentSizedExtVectorType>... +Matcher<Type>dependentSizedExtVectorTypeMatcher<DependentSizedExtVectorType>...
Matches C++ extended vector type where either the type or size is dependent.
 
 Given
@@ -2544,7 +2544,7 @@ 

Node Matchers

class vector { typedef T __attribute__((ext_vector_type(Size))) type; }; -dependentSizedExtVectorType +dependentSizedExtVectorType() matches "T __attribute__((ext_vector_type(Size)))"