Make the linter happy (for real)

This commit is contained in:
Jeremy 2023-08-27 21:31:39 -04:00
parent e60fa2c388
commit c48f37cb68
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 override {
const char* what() const noexcept override {
return "Unable to read file";
}
};