Skip to content

Commit 015cd31

Browse files
committed
[libc++] Add missing _LIBCPP_HIDE_FROM_ABI in uninitialized_buffer.h
1 parent f320fef commit 015cd31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__memory/uninitialized_buffer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ class __uninitialized_buffer_deleter {
3636

3737
public:
3838
template <class _Dummy = int, __enable_if_t<is_default_constructible<_Destructor>::value, _Dummy> = 0>
39-
__uninitialized_buffer_deleter() : __count_(0) {}
39+
_LIBCPP_HIDE_FROM_ABI __uninitialized_buffer_deleter() : __count_(0) {}
4040

41-
__uninitialized_buffer_deleter(size_t __count, _Destructor __destructor)
41+
_LIBCPP_HIDE_FROM_ABI __uninitialized_buffer_deleter(size_t __count, _Destructor __destructor)
4242
: __count_(__count), __destructor_(std::move(__destructor)) {}
4343

4444
template <class _Tp>

0 commit comments

Comments
 (0)