Change coral::fs::~fs to be non-pure virtual

This commit is contained in:
kayomn 2023-02-20 01:08:39 +00:00
parent f76d908325
commit eb93da95e5
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ export namespace coral {
bool can_write; bool can_write;
}; };
virtual ~fs() = 0; virtual ~fs() {};
/** /**
* Attempts to read the file in the file system located at `file_path` relative, calling * Attempts to read the file in the file system located at `file_path` relative, calling