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