diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/raw_convert.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raw_convert.cc b/src/raw_convert.cc index ae35d870..c806b45e 100644 --- a/src/raw_convert.cc +++ b/src/raw_convert.cc @@ -190,7 +190,7 @@ dcp::raw_convert (wchar_t const * v, int, bool) template <> unsigned char -dcp::raw_convert (std::string v, int precision, bool fixed) +dcp::raw_convert(string v, int precision, bool fixed) { return locale_convert<unsigned char> (make_local (v), precision, fixed); } @@ -198,7 +198,7 @@ dcp::raw_convert (std::string v, int precision, bool fixed) template <> unsigned short int -dcp::raw_convert (std::string v, int precision, bool fixed) +dcp::raw_convert(string v, int precision, bool fixed) { return locale_convert<unsigned short int> (make_local (v), precision, fixed); } |
