///////////////////////////////////////////////////////
| 36 | { |
| 37 | //////////////////////////////////////////////////////////// |
| 38 | MemoryInputStream::MemoryInputStream(const void* data, std::size_t sizeInBytes) : |
| 39 | m_data(static_cast<const std::byte*>(data)), |
| 40 | m_size(sizeInBytes) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | |
| 45 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected