| 24 | } |
| 25 | |
| 26 | void* MemoryReadStream::Move(uint32 bytes) |
| 27 | { |
| 28 | ASSERT(GetLength() - GetPosition() >= bytes); |
| 29 | const auto result = (void*)_position; |
| 30 | _position += bytes; |
| 31 | return result; |
| 32 | } |
| 33 | |
| 34 | void MemoryReadStream::Flush() |
| 35 | { |
no test coverage detected