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.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/raw_convert.cc b/src/raw_convert.cc
index 42622bfe..37c8215f 100644
--- a/src/raw_convert.cc
+++ b/src/raw_convert.cc
@@ -135,6 +135,15 @@ dcp::raw_convert (string v, int, bool)
}
template <>
+string
+dcp::raw_convert (char v, int, bool)
+{
+ string s;
+ s += v;
+ return s;
+}
+
+template <>
int
dcp::raw_convert (string v, int precision, bool fixed)
{