| 829 | FMT_ENABLE_IF(std::allocator_traits<Alloc>:: |
| 830 | propagate_on_container_move_assignment::value)> |
| 831 | FMT_CONSTEXPR20 auto move_alloc(basic_memory_buffer& other) -> bool { |
| 832 | alloc_ = std::move(other.alloc_); |
| 833 | return true; |
| 834 | } |
| 835 | // If the allocator does not propagate then copy the data from other. |
| 836 | template <typename Alloc = Allocator, |
| 837 | FMT_ENABLE_IF(!std::allocator_traits<Alloc>:: |