[libcxx-commits] [libcxx] [libc++] Introduce ABI sensitive areas to avoid requiring _LIBCPP_HIDE_FROM_ABI everywhere (PR #131156)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed May 7 07:48:39 PDT 2025
================
@@ -81,122 +81,108 @@ public:
__split_buffer(const __split_buffer&) = delete;
__split_buffer& operator=(const __split_buffer&) = delete;
- _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI __split_buffer()
- _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
+ _LIBCPP_CONSTEXPR_SINCE_CXX20 __split_buffer() _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
----------------
ldionne wrote:
Let's drop these changes from the patch.
https://github.com/llvm/llvm-project/pull/131156
More information about the libcxx-commits
mailing list