diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2016-10-31 10:19:06 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2016-10-31 10:19:06 +0000 |
| commit | 650a989c1e2e6c38bc349678b5b88037d6376ffe (patch) | |
| tree | a899b94149bc9c9eea7e85023ca964cea474dba7 /src/string.hh | |
| parent | bd5c952d7630a552dcd7c0d3788f9a193c662238 (diff) | |
Add to_string(long long int) overload to fix OSX compilation
Diffstat (limited to 'src/string.hh')
| -rw-r--r-- | src/string.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/string.hh b/src/string.hh index d8643935..5721dc6a 100644 --- a/src/string.hh +++ b/src/string.hh @@ -365,6 +365,7 @@ inline Hex hex(size_t val) { return {val}; } InplaceString<15> to_string(int val); InplaceString<23> to_string(long int val); InplaceString<23> to_string(size_t val); +InplaceString<23> to_string(long long int val); InplaceString<23> to_string(Hex val); InplaceString<23> to_string(float val); InplaceString<7> to_string(Codepoint c); |
