diff options
| author | 2018-07-23 09:34:41 -0700 | |
|---|---|---|
| committer | 2018-07-23 09:34:41 -0700 | |
| commit | 7138b99f215f98e7d9e77ddcd150161b647b977c (patch) | |
| tree | 00217af38fc131017a841c63432cb48fb58e3c1e /src/common/string_util.h | |
| parent | Merge pull request #777 from lioncash/lang (diff) | |
| parent | string_util: Get rid of separate resize() in CPToUTF16(), UTF16ToUTF8(), Code... (diff) | |
| download | yuzu-7138b99f215f98e7d9e77ddcd150161b647b977c.tar.gz yuzu-7138b99f215f98e7d9e77ddcd150161b647b977c.tar.xz yuzu-7138b99f215f98e7d9e77ddcd150161b647b977c.zip | |
Merge pull request #775 from lioncash/str
string_util: Minor changes
Diffstat (limited to 'src/common/string_util.h')
| -rw-r--r-- | src/common/string_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/string_util.h b/src/common/string_util.h index daa071f83..4a2143b59 100644 --- a/src/common/string_util.h +++ b/src/common/string_util.h | |||
| @@ -57,7 +57,7 @@ static bool TryParse(const std::string& str, N* const output) { | |||
| 57 | return false; | 57 | return false; |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | std::string TabsToSpaces(int tab_size, const std::string& in); | 60 | std::string TabsToSpaces(int tab_size, std::string in); |
| 61 | 61 | ||
| 62 | void SplitString(const std::string& str, char delim, std::vector<std::string>& output); | 62 | void SplitString(const std::string& str, char delim, std::vector<std::string>& output); |
| 63 | 63 | ||