diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2016-08-31 09:07:33 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2016-08-31 09:07:33 +0100 |
| commit | 97e36233fbb87c46372483eb9e0b8f7a65670792 (patch) | |
| tree | 43b5e4cee18988a2bd084976d9bfd2bac327c9ae /src/string.hh | |
| parent | 80298a95a064baac0d7fe68a2857fb41ac1a0a6e (diff) | |
Remove the to_string(unsigned) (it conflicts with to_string(size_t) on x86)
Just cast to int when we pass an unsigned.
Diffstat (limited to 'src/string.hh')
| -rw-r--r-- | src/string.hh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string.hh b/src/string.hh index d1c6aa0e..74fbb51a 100644 --- a/src/string.hh +++ b/src/string.hh @@ -327,7 +327,6 @@ inline Hex hex(size_t val) { return {val}; } InplaceString<15> to_string(int val); InplaceString<23> to_string(long int val); -InplaceString<15> to_string(unsigned val); InplaceString<23> to_string(size_t val); InplaceString<23> to_string(Hex val); InplaceString<23> to_string(float val); |
