1
0
Fork 0
forked from lthn/blockchain

fixed incorrect end-of-object indentation in dump_as_json() and similar functions

This commit is contained in:
sowle 2024-06-29 13:59:01 +02:00
parent 4e20dad924
commit 0e69e059fe
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -116,7 +116,7 @@ namespace epee
template<class t_stream>
static void handle_obj_end(t_stream& strm, size_t indent)
{
strm << "}";
strm << make_indent(indent) << "}";
}
template<class t_stream>