summaryrefslogtreecommitdiff
path: root/src/raw_convert.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-15 14:19:13 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-15 14:19:13 +0100
commit3652809182f2ff89e552a519658cba2afc57ce28 (patch)
tree727490f35ae3709ffc3f4b6570c5527e226663ef /src/raw_convert.cc
parent3c93561190ceb883db6b69c1cd37d99cd547fe83 (diff)
Try to fix int/long confusion.
Diffstat (limited to 'src/raw_convert.cc')
-rw-r--r--src/raw_convert.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raw_convert.cc b/src/raw_convert.cc
index b7685ab8..42622bfe 100644
--- a/src/raw_convert.cc
+++ b/src/raw_convert.cc
@@ -73,21 +73,21 @@ dcp::raw_convert (unsigned int v, int precision, bool fixed)
template <>
string
-dcp::raw_convert (long int v, int precision, bool fixed)
+dcp::raw_convert (long v, int precision, bool fixed)
{
return make_raw (locale_convert<string> (v, precision, fixed));
}
template <>
string
-dcp::raw_convert (unsigned long int v, int precision, bool fixed)
+dcp::raw_convert (unsigned long v, int precision, bool fixed)
{
return make_raw (locale_convert<string> (v, precision, fixed));
}
template <>
string
-dcp::raw_convert (long long int v, int precision, bool fixed)
+dcp::raw_convert (long long v, int precision, bool fixed)
{
return make_raw (locale_convert<string> (v, precision, fixed));
}