From 3dcf3cbc421cb5ee985b3b4a697c51247df8b5dc Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Mon, 4 Sep 2023 13:41:51 +0200 Subject: [PATCH] [ASTMatchers] Bring comments & docs back in sync 415d9e8ca39c0b42f351cc532ccfb48b6ac97f7f edited the generated html directly without updating the source of truth. --- clang/docs/LibASTMatchersReference.html | 3 ++- clang/include/clang/ASTMatchers/ASTMatchers.h | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index a526751f0116..fcd3114bb523 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/docs/LibASTMatchersReference.html @@ -2537,7 +2537,8 @@ dependentSizedArrayType() Matcher<Type>dependentSizedExtVectorTypeMatcher<DependentSizedExtVectorType>... -
Matches C++ extended vector type where either the type or size is dependent.
+
Matches C++ extended vector type where either the type or size is
+dependent.
 
 Given
   template<typename T, int Size>
diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h
index c1ffe1a2dd3e..c9ab8c949a4c 100644
--- a/clang/include/clang/ASTMatchers/ASTMatchers.h
+++ b/clang/include/clang/ASTMatchers/ASTMatchers.h
@@ -6938,7 +6938,7 @@ AST_POLYMORPHIC_MATCHER_P(hasSize,
 ///     T data[Size];
 ///   };
 /// \endcode
-/// dependentSizedArrayType
+/// dependentSizedArrayType()
 ///   matches "T data[Size]"
 extern const AstTypeMatcher dependentSizedArrayType;
 
@@ -6952,7 +6952,7 @@ extern const AstTypeMatcher dependentSizedArrayType;
 ///     typedef T __attribute__((ext_vector_type(Size))) type;
 ///   };
 /// \endcode
-/// dependentSizedExtVectorType
+/// dependentSizedExtVectorType()
 ///   matches "T __attribute__((ext_vector_type(Size)))"
 extern const AstTypeMatcher
     dependentSizedExtVectorType;