diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-15 14:19:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-15 14:19:13 +0100 |
| commit | 3652809182f2ff89e552a519658cba2afc57ce28 (patch) | |
| tree | 727490f35ae3709ffc3f4b6570c5527e226663ef /src/raw_convert.h | |
| parent | 3c93561190ceb883db6b69c1cd37d99cd547fe83 (diff) | |
Try to fix int/long confusion.
Diffstat (limited to 'src/raw_convert.h')
| -rw-r--r-- | src/raw_convert.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/raw_convert.h b/src/raw_convert.h index 901e99dd..2bd74c60 100644 --- a/src/raw_convert.h +++ b/src/raw_convert.h @@ -62,19 +62,19 @@ raw_convert (unsigned int v, int, bool); template <> std::string -raw_convert (long int v, int, bool); +raw_convert (long v, int, bool); template <> std::string -raw_convert (unsigned long int v, int, bool); +raw_convert (unsigned long v, int, bool); template <> std::string -raw_convert (long long int v, int, bool); +raw_convert (long long v, int, bool); template <> std::string -raw_convert (unsigned long long int v, int, bool); +raw_convert (unsigned long long v, int, bool); template <> std::string |
