| 12 | class FileData { |
| 13 | public: |
| 14 | FileData() = default; |
| 15 | FileData(const FileData&) = delete; |
| 16 | FileData(FileData&& other) noexcept : data(other.data), bytesRead(other.bytesRead) { |
| 17 | other.data = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected