diff options
author | clyne <clyne@bitgloo.com> | 2020-06-27 19:13:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 19:13:18 -0400 |
commit | 56692725154d1e4ff2ef4786107cfda81c44b192 (patch) | |
tree | 7c582f832b720ef54b6c2983d5d34d86a9b7f87b | |
parent | d680c02d03e7a652f0b7e8daf4d52b7ae230c513 (diff) |
Changed other base instance to signed
-rw-r--r-- | to_string.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/to_string.hpp b/to_string.hpp index e7eef93..eb363f0 100644 --- a/to_string.hpp +++ b/to_string.hpp @@ -68,7 +68,7 @@ class to_string_t { /** * Simplifies use of `to_string_t` from `to_string_t<N>()` to `to_string<N>`. */ -template<auto N, unsigned int base = 10, typename char_type = char> +template<auto N, int base = 10, typename char_type = char> constexpr to_string_t<N, base, char_type> to_string; #endif // TCSULLIVAN_TO_STRING_HPP_ |