| 817 | using const_reference = const T&; |
| 818 | |
| 819 | FMT_CONSTEXPR explicit basic_memory_buffer( |
| 820 | const Allocator& alloc = Allocator()) |
| 821 | : detail::buffer<T>(grow), alloc_(alloc) { |
| 822 | this->set(store_, SIZE); |
| 823 | if (detail::is_constant_evaluated()) detail::fill_n(store_, SIZE, T()); |
| 824 | } |
| 825 | FMT_CONSTEXPR20 ~basic_memory_buffer() { deallocate(); } |
| 826 | |
| 827 | private: |
nothing calls this directly
no test coverage detected