diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-10-09 14:53:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-10-09 14:53:10 +0100 |
| commit | 3ad05d11dce653b33c6f0ea2d6cdba5a7e1bf4e5 (patch) | |
| tree | 4ecb0f405f61e38e87049194f52b0980d06e18c6 /src/raw_convert.h | |
| parent | 6ff5bc54fafcb9332609912514c287ac332ab7e5 (diff) | |
More _convert functions.
Diffstat (limited to 'src/raw_convert.h')
| -rw-r--r-- | src/raw_convert.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/raw_convert.h b/src/raw_convert.h index af2a1e37..90d94771 100644 --- a/src/raw_convert.h +++ b/src/raw_convert.h @@ -54,6 +54,14 @@ raw_convert (Q v, int precision = 16, bool fixed = false) template <> std::string +raw_convert (unsigned char v, int, bool); + +template <> +std::string +raw_convert (unsigned short int v, int, bool); + +template <> +std::string raw_convert (int v, int, bool); template <> |
