StringUtil: support TryParse(u16*)

This commit is contained in:
Pierre Bourdon
2017-09-18 05:04:11 +02:00
parent c50848be21
commit 43f067c6e1
2 changed files with 16 additions and 13 deletions

View File

@ -59,6 +59,7 @@ std::string ThousandSeparate(I value, int spaces = 0)
std::string StringFromBool(bool value);
bool TryParse(const std::string& str, bool* output);
bool TryParse(const std::string& str, u16* output);
bool TryParse(const std::string& str, u32* output);
bool TryParse(const std::string& str, u64* output);