Construct an empty buffer.
| 232 | public: |
| 233 | /// Construct an empty buffer. |
| 234 | const_buffer() noexcept |
| 235 | : data_(0), |
| 236 | size_(0) |
| 237 | { |
| 238 | } |
| 239 | |
| 240 | /// Construct a buffer to represent a given memory range. |
| 241 | const_buffer(const void* data, std::size_t size) noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected