From 66ba54b8a295cc2759387ef2a4a162de2ad4946e Mon Sep 17 00:00:00 2001 From: Haojian Wu Date: Mon, 14 Jul 2025 21:19:15 +0200 Subject: [PATCH] Use a smaller vector for DeclTypeInfo. --- clang/include/clang/Sema/DeclSpec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Sema/DeclSpec.h b/clang/include/clang/Sema/DeclSpec.h index 567ad2d5934d4..4b7c8d609735f 100644 --- a/clang/include/clang/Sema/DeclSpec.h +++ b/clang/include/clang/Sema/DeclSpec.h @@ -1918,7 +1918,7 @@ class Declarator { /// parsed. This is pushed from the identifier out, which means that element /// #0 will be the most closely bound to the identifier, and /// DeclTypeInfo.back() will be the least closely bound. - SmallVector DeclTypeInfo; + SmallVector DeclTypeInfo; /// InvalidType - Set by Sema::GetTypeForDeclarator(). LLVM_PREFERRED_TYPE(bool)