Codechange: move script settings to std::string

This commit is contained in:
rubidium42
2021-04-29 19:04:27 +02:00
committed by rubidium42
parent 95386dc2b8
commit a032714dc4
7 changed files with 45 additions and 49 deletions

View File

@@ -31,7 +31,7 @@ struct IniItem {
IniItem(struct IniGroup *parent, const std::string &name);
~IniItem();
void SetValue(const char *value);
void SetValue(const std::string_view value);
};
/** A group within an ini file. */