summaryrefslogtreecommitdiff
path: root/src/raw_convert.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/raw_convert.cc')
-rw-r--r--src/raw_convert.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/raw_convert.cc b/src/raw_convert.cc
index cb7807a3..5f8c1e41 100644
--- a/src/raw_convert.cc
+++ b/src/raw_convert.cc
@@ -66,6 +66,13 @@ dcp::raw_convert (int v, int precision, bool fixed)
template <>
string
+dcp::raw_convert (unsigned int v, int precision, bool fixed)
+{
+ return make_raw (locale_convert<string> (v, precision, fixed));
+}
+
+template <>
+string
dcp::raw_convert (int64_t v, int precision, bool fixed)
{
return make_raw (locale_convert<string> (v, precision, fixed));