summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-07-14 13:47:51 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-07-14 13:47:51 +0100
commitf87dbe410ff95a373e58e514c11171364352c826 (patch)
treeda1704a83a6f8d6935bec8ad6bdd935229e85194 /src/string.hh
parentc1b9ea4d1e53ba085f3125dc87c2b7a7f0c84e51 (diff)
Add missing support for Codepoint in format
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 424e994c..c853ebe4 100644
--- a/src/string.hh
+++ b/src/string.hh
@@ -277,6 +277,7 @@ InplaceString<16> to_string(int val);
InplaceString<24> to_string(size_t val);
InplaceString<24> to_string(Hex val);
InplaceString<24> to_string(float val);
+InplaceString<8> to_string(Codepoint c);
template<typename RealType, typename ValueType>
decltype(to_string(std::declval<ValueType>()))