diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-15 15:42:55 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-15 15:42:55 +0200 |
| commit | 65d21ed2de3a76dc574c8ad111fc02d8f696fcd6 (patch) | |
| tree | 309b770ce0df0b7828638687e24e3fa2ba34e7a8 /src | |
| parent | 7b96b3ceec5d14874628cd8b9cb7a827d266b2f4 (diff) | |
Cleanup: remove a couple of unnecessary namespace qualifiers.
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); } |
