Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions libcxx/include/__split_buffer
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ public:
pointer __end_;
_LIBCPP_COMPRESSED_PAIR(pointer, __end_cap_, allocator_type, __alloc_);

using __alloc_ref = __add_lvalue_reference_t<allocator_type>;
using __alloc_const_ref = __add_lvalue_reference_t<allocator_type>;

__split_buffer(const __split_buffer&) = delete;
__split_buffer& operator=(const __split_buffer&) = delete;

Expand Down
4 changes: 2 additions & 2 deletions libcxx/include/future
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ public:
_LIBCPP_HIDE_FROM_ABI void set_value_at_thread_exit(_Arg&& __arg);

_LIBCPP_HIDE_FROM_ABI _Rp move();
_LIBCPP_HIDE_FROM_ABI __add_lvalue_reference_t<_Rp> copy();
_LIBCPP_HIDE_FROM_ABI _Rp& copy();
};

template <class _Rp>
Expand Down Expand Up @@ -636,7 +636,7 @@ _Rp __assoc_state<_Rp>::move() {
}

template <class _Rp>
__add_lvalue_reference_t<_Rp> __assoc_state<_Rp>::copy() {
_Rp& __assoc_state<_Rp>::copy() {
unique_lock<mutex> __lk(this->__mut_);
this->__sub_wait(__lk);
if (this->__exception_ != nullptr)
Expand Down
Loading