mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
add SPROUT_PP_SOME_NUMBER
This commit is contained in:
parent
12e12373d0
commit
b4b870209b
16 changed files with 108 additions and 76 deletions
|
@ -1310,12 +1310,12 @@ namespace sprout {
|
|||
to_string(Char zero, Char one = Char('1')) const {
|
||||
return to_string<Char, Traits, std::allocator<Char> >(zero, one);
|
||||
}
|
||||
template<class Char>
|
||||
template<typename Char>
|
||||
SPROUT_NON_CONSTEXPR std::basic_string<Char, std::char_traits<Char>, std::allocator<Char> >
|
||||
to_string() const {
|
||||
return to_string<Char, std::char_traits<Char>, std::allocator<Char> >();
|
||||
}
|
||||
template<class Char>
|
||||
template<typename Char>
|
||||
SPROUT_NON_CONSTEXPR std::basic_string<Char, std::char_traits<Char>, std::allocator<Char> >
|
||||
to_string(Char zero, Char one = Char('1')) const {
|
||||
return to_string<Char, std::char_traits<Char>, std::allocator<Char> >(zero, one);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue