| 187 | } |
| 188 | |
| 189 | void MemoryStream::WriteDirectCommit(size_t length) |
| 190 | { |
| 191 | Guard::Assert(_dataCapacity >= _position + length); |
| 192 | _position += length; |
| 193 | _dataSize = std::max(_dataSize, _position); |
| 194 | } |
| 195 | |
| 196 | void MemoryStream::CopyFromStream(IStream& stream, uint64_t length) |
| 197 | { |
no test coverage detected