@@ -58,7 +58,6 @@ struct decode_traits
5858 {
5959 return result_type (jsoncons::unexpect, r1.error ().code (), r1.error ().message_arg (), line, column);
6060 }
61- std::cout << " try_decode: " << *r1 << " \n " ;
6261 auto r2 = (*r1).template try_as <T>(aset);
6362 if (JSONCONS_UNLIKELY (!r2))
6463 {
@@ -459,7 +458,6 @@ struct decode_traits<T,
459458 }
460459 v.insert (std::move (*r));
461460 if (JSONCONS_UNLIKELY (ec)) {return result_type (jsoncons::unexpect, ec, cursor.line (), cursor.column ());}
462- // std::cout << "cursor.next 20\n";
463461 cursor.next (ec);
464462 if (JSONCONS_UNLIKELY (ec)) {return result_type{jsoncons::unexpect, ec, cursor.line (), cursor.column ()};}
465463 }
@@ -520,7 +518,6 @@ struct decode_traits<T,
520518 }
521519 v.push_front (std::move (*r));
522520 if (JSONCONS_UNLIKELY (ec)) {return result_type (jsoncons::unexpect, ec, cursor.line (), cursor.column ());}
523- // std::cout << "cursor.next 20\n";
524521 cursor.next (ec);
525522 if (JSONCONS_UNLIKELY (ec)) {return result_type{jsoncons::unexpect, ec, cursor.line (), cursor.column ()};}
526523 }
@@ -636,7 +633,6 @@ struct decode_traits<T,
636633 return result_type (jsoncons::unexpect, r2.error ());
637634 }
638635 val.emplace (std::move (*r1), std::move (*r2));
639- // std::cout << "cursor.next 300\n";
640636 cursor.next (ec);
641637 if (JSONCONS_UNLIKELY (ec))
642638 {
@@ -701,7 +697,6 @@ struct decode_traits<T,
701697 {
702698 return result_type{jsoncons::unexpect, json_errc::invalid_number, cursor.line (), cursor.column ()};
703699 }
704- // std::cout << "cursor.next 500\n";
705700 cursor.next (ec);
706701 if (JSONCONS_UNLIKELY (ec))
707702 {
@@ -713,7 +708,6 @@ struct decode_traits<T,
713708 return result_type (jsoncons::unexpect, r1.error ());
714709 }
715710 val.emplace (n, std::move (*r1));
716- // std::cout << "cursor.next 600\n";
717711 cursor.next (ec);
718712 if (JSONCONS_UNLIKELY (ec))
719713 {
0 commit comments