Construct an empty buffer.
| 119 | public: |
| 120 | /// Construct an empty buffer. |
| 121 | mutable_buffer() noexcept |
| 122 | : data_(0), |
| 123 | size_(0) |
| 124 | { |
| 125 | } |
| 126 | |
| 127 | /// Construct a buffer to represent a given memory range. |
| 128 | mutable_buffer(void* data, std::size_t size) noexcept |
nothing calls this directly
no test coverage detected