diff options
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 |
