summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 7d3d1a72..4736bd96 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 (std::string v, int precision, bool fixed)
{
diff --git a/src/raw_convert.h b/src/raw_convert.h
index dff860e9..b767c23b 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 <>