| 82 | ///////////////////////////////////////////////////////////////////////////////////////////////// |
| 83 | |
| 84 | std::shared_ptr<MemoryWriteStream> MemoryWriteStream::Make() { |
| 85 | return std::shared_ptr<MemoryWriteStream>(new MemoryWriteStream()); |
| 86 | } |
| 87 | |
| 88 | bool MemoryWriteStream::write(const void* data, size_t size) { |
| 89 | const auto bytes = static_cast<const uint8_t*>(data); |
nothing calls this directly
no outgoing calls
no test coverage detected