summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-08-27 10:46:49 +0100
committerMaxime Coste <frrrwww@gmail.com>2016-08-27 10:46:49 +0100
commit2bf100bdd0522f1427fc6da5ac093895a3c80ce0 (patch)
tree6ee1c5adf28b4bad0876401c9b5dbbf830b5c4b3 /src/string.hh
parentba7df73b1565bed6e336bdf2a352a0d757314288 (diff)
Add a to_string overload for unsigned int
Diffstat (limited to 'src/string.hh')
-rw-r--r--src/string.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/string.hh b/src/string.hh
index 74fbb51a..d1c6aa0e 100644
--- a/src/string.hh
+++ b/src/string.hh
@@ -327,6 +327,7 @@ 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);