Codechange: use default virtual destructors over empty destructors

This commit is contained in:
rubidium42
2024-12-06 12:20:39 +01:00
committed by rubidium42
parent 701cb2e9d7
commit ef76f0e758
8 changed files with 13 additions and 20 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ struct StringReader {
bool translation; ///< Are we reading a translation, implies !master. However, the base translation will have this false.
StringReader(StringData &data, const std::string &file, bool master, bool translation);
virtual ~StringReader() {}
virtual ~StringReader() = default;
void HandleString(char *str);
/**