| 105 | } |
| 106 | |
| 107 | void Data::fastSet(uint8_t* bytes, const ssize_t size) |
| 108 | { |
| 109 | AXASSERT(size >= 0, "fastSet size should be non-negative"); |
| 110 | // AXASSERT(bytes, "bytes should not be nullptr"); |
| 111 | (void)_impl.release_pointer(); // forget internal pointer |
| 112 | _impl.attach_abi(bytes, size); |
| 113 | } |
| 114 | |
| 115 | void Data::clear() |
| 116 | { |
no test coverage detected