Make the linter happy

This commit is contained in:
Jeremy 2023-08-27 21:02:09 -04:00
parent fb258f0671
commit e60fa2c388
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -261,7 +261,7 @@ T load_bytes(FILE* obj_file, off_t offset) {
}
class file_error : std::exception {
virtual const char* what() const noexcept {
virtual const char* what() const noexcept override {
return "Unable to read file";
}
};