summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/raw_convert.cc9
-rw-r--r--src/raw_convert.h4
2 files changed, 0 insertions, 13 deletions
diff --git a/src/raw_convert.cc b/src/raw_convert.cc
index c806b45e..7f61e87c 100644
--- a/src/raw_convert.cc
+++ b/src/raw_convert.cc
@@ -180,15 +180,6 @@ dcp::raw_convert (char v, int, bool)
template <>
-string
-dcp::raw_convert (wchar_t const * v, int, bool)
-{
- wstring w (v);
- return string (w.begin(), w.end());
-}
-
-
-template <>
unsigned char
dcp::raw_convert(string v, int precision, bool fixed)
{
diff --git a/src/raw_convert.h b/src/raw_convert.h
index 51f5fbb6..3fa85737 100644
--- a/src/raw_convert.h
+++ b/src/raw_convert.h
@@ -118,10 +118,6 @@ raw_convert (std::string v, int, bool);
template <>
std::string
-raw_convert (wchar_t const * v, int, bool);
-
-template <>
-std::string
raw_convert (char v, int, bool);
template <>