| 1814 | } |
| 1815 | |
| 1816 | FMT_CONSTEXPR void push_back(const T& value) { |
| 1817 | try_reserve(size_ + 1); |
| 1818 | ptr_[size_++] = value; |
| 1819 | } |
| 1820 | |
| 1821 | /// Appends data to the end of the buffer. |
| 1822 | template <typename U> |
nothing calls this directly
no test coverage detected