Fix indentation of rangeToString in tostring.h

This commit is contained in:
mat tso 2016-10-11 04:20:55 +02:00
parent f5ccf98c59
commit b0c88a3d96

View File

@ -269,7 +269,7 @@ std::string toString( T const& value ) {
oss << "{ "; oss << "{ ";
if( first != last ) { if( first != last ) {
oss << Catch::toString( *first ); oss << Catch::toString( *first );
for( ++first ; first != last ; ++first ) while( ++first != last )
oss << ", " << Catch::toString( *first ); oss << ", " << Catch::toString( *first );
} }
oss << " }"; oss << " }";