IniFile: Handle s64/u64 values

This commit is contained in:
Lioncash
2017-02-24 22:56:33 -05:00
parent 51136681df
commit beec40f178
19 changed files with 133 additions and 40 deletions

View File

@ -61,6 +61,7 @@ std::string StringFromBool(bool value);
bool TryParse(const std::string& str, bool* output);
bool TryParse(const std::string& str, u32* output);
bool TryParse(const std::string& str, u64* output);
template <typename N>
static bool TryParse(const std::string& str, N* const output)