mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
Provide default implementation for int_to_string, but allow for overloaded function
This commit is contained in:
@ -3186,7 +3186,8 @@ namespace nlohmann
|
||||
{
|
||||
namespace detail
|
||||
{
|
||||
void int_to_string( std::string& target, int value )
|
||||
template<typename string_type>
|
||||
void int_to_string( string_type& target, int value )
|
||||
{
|
||||
target = std::to_string(value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user