From 333f50d30cd7b9f6e171e0ea1285a9cfbaa1342a Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 21 Sep 2010 20:16:37 +0000 Subject: visibility-decoration. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@114470 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/__split_buffer | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/__split_buffer') 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());} + _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) {} }; -- cgit v1.2.3