| 26 | |
| 27 | template <class Derived, typename C, class Allocator> |
| 28 | OutputStreamBufferBase<Derived, C, Allocator>::~OutputStreamBufferBase() { |
| 29 | mAllocator.deallocate(mStorage, mStorageSize + 1); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * @brief Output a string |
nothing calls this directly
no test coverage detected