| 907 | using const_reference = const T&; |
| 908 | |
| 909 | FMT_CONSTEXPR20 explicit basic_memory_buffer(const Allocator& alloc = Allocator()) : alloc_(alloc) { |
| 910 | this->set(store_, SIZE); |
| 911 | if (detail::is_constant_evaluated()) detail::fill_n(store_, SIZE, T()); |
| 912 | } |
| 913 | |
| 914 | FMT_CONSTEXPR20 ~basic_memory_buffer() { deallocate(); } |
| 915 | private: |
nothing calls this directly
no test coverage detected