From fafc1bd59e163dcd501eb102ba8396596616fd52 Mon Sep 17 00:00:00 2001 From: Peng Liu Date: Sat, 4 Jan 2025 19:59:51 -0500 Subject: [PATCH] Remove redundant __append() declaration --- libcxx/include/__vector/vector_bool.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libcxx/include/__vector/vector_bool.h b/libcxx/include/__vector/vector_bool.h index 525fc35b26cc9..8658745b8a8f9 100644 --- a/libcxx/include/__vector/vector_bool.h +++ b/libcxx/include/__vector/vector_bool.h @@ -442,7 +442,6 @@ class _LIBCPP_TEMPLATE_VIS vector { template _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __construct_at_end(_InputIterator __first, _Sentinel __last, size_type __n); - _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __append(size_type __n, const_reference __x); _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 reference __make_ref(size_type __pos) _NOEXCEPT { return reference(__begin_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word); }