diff options
Diffstat (limited to 'libcxx/include/__split_buffer')
-rw-r--r-- | libcxx/include/__split_buffer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/__split_buffer b/libcxx/include/__split_buffer index dbf3ce0182a..d5b8f0a3ee2 100644 --- a/libcxx/include/__split_buffer +++ b/libcxx/include/__split_buffer @@ -141,14 +141,14 @@ public: private: _LIBCPP_INLINE_VISIBILITY - void __move_assign_alloc(const __split_buffer& __c, true_type) + void __move_assign_alloc(__split_buffer& __c, true_type) _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value) { __alloc() = _VSTD::move(__c.__alloc()); } _LIBCPP_INLINE_VISIBILITY - void __move_assign_alloc(const __split_buffer& __c, false_type) _NOEXCEPT + void __move_assign_alloc(__split_buffer& __c, false_type) _NOEXCEPT {} _LIBCPP_INLINE_VISIBILITY |