add to_string

This commit is contained in:
bolero-MURAKAMI 2012-04-14 19:06:21 +09:00
parent 89e2be54fa
commit 1968a6fac4
16 changed files with 1490 additions and 1085 deletions

View file

@ -8,9 +8,6 @@
namespace sprout {
namespace detail {
//
// integer_digits_impl
//
template<typename IntType, long N, long D>
struct integer_digits_impl
: public std::integral_constant<
@ -24,7 +21,7 @@ namespace sprout {
//
// integer_digits
//
template<typename IntType, std::size_t Base>
template<typename IntType, std::size_t Base = 10>
struct integer_digits;
template<typename IntType>