summaryrefslogtreecommitdiff
path: root/include/__split_buffer
diff options
context:
space:
mode:
Diffstat (limited to 'include/__split_buffer')
-rw-r--r--include/__split_buffer6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/__split_buffer b/include/__split_buffer
index a44c23197..e3c2b9dd0 100644
--- a/include/__split_buffer
+++ b/include/__split_buffer
@@ -132,23 +132,29 @@ public:
bool __invariants() const;
private:
+ _LIBCPP_INLINE_VISIBILITY
void __move_assign_alloc(const __split_buffer& __c, true_type)
{
__alloc() = _STD::move(__c.__alloc());
}
+ _LIBCPP_INLINE_VISIBILITY
void __move_assign_alloc(const __split_buffer& __c, false_type)
{}
+ _LIBCPP_INLINE_VISIBILITY
static void __swap_alloc(__alloc_rr& __x, __alloc_rr& __y)
{__swap_alloc(__x, __y, integral_constant<bool,
__alloc_traits::propagate_on_container_swap::value>());}
+ _LIBCPP_INLINE_VISIBILITY
static void __swap_alloc(__alloc_rr& __x, __alloc_rr& __y, true_type)
{
using _STD::swap;
swap(__x, __y);
}
+
+ _LIBCPP_INLINE_VISIBILITY
static void __swap_alloc(__alloc_rr& __x, __alloc_rr& __y, false_type)
{}
};