Default the copy and move operators because the virtual dtor is explicit
| 35 | virtual ~ExternalFile() override = default; |
| 36 | // Default the copy and move operators because the virtual dtor is explicit |
| 37 | ExternalFile(const ExternalFile& other) = default; |
| 38 | ExternalFile(ExternalFile&& other) = default; |
| 39 | ExternalFile& operator=(const ExternalFile&) = default; |
| 40 | ExternalFile& operator=(ExternalFile&&) = default; |