We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0be14 commit 2c03035Copy full SHA for 2c03035
include/tao/json/to_string.hh
@@ -23,10 +23,10 @@ namespace tao
23
}
24
25
template< template< typename ... > class Traits >
26
- std::string to_string( const basic_value< Traits > & v, const unsigned indent, const unsigned current = 0 )
+ std::string to_string( const basic_value< Traits > & v, const unsigned indent )
27
{
28
std::ostringstream o;
29
- internal::to_stream( o, v, indent, current );
+ internal::to_stream( o, v, indent );
30
return o.str();
31
32
0 commit comments