@@ -305,7 +305,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
305
305
destination1_->begin_object (tag, context, ec);
306
306
if (JSONCONS_UNLIKELY (ec))
307
307
{
308
- return ;
308
+ JSONCONS_VISITOR_RETURN
309
309
}
310
310
destination2_->begin_object (tag, context, ec);
311
311
JSONCONS_VISITOR_RETURN
@@ -316,7 +316,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
316
316
destination1_->begin_object (length, tag, context, ec);
317
317
if (JSONCONS_UNLIKELY (ec))
318
318
{
319
- return ;
319
+ JSONCONS_VISITOR_RETURN
320
320
}
321
321
destination2_->begin_object (length, tag, context, ec);
322
322
JSONCONS_VISITOR_RETURN
@@ -327,7 +327,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
327
327
destination1_->end_object (context, ec);
328
328
if (JSONCONS_UNLIKELY (ec))
329
329
{
330
- return ;
330
+ JSONCONS_VISITOR_RETURN
331
331
}
332
332
destination2_->end_object (context, ec);
333
333
JSONCONS_VISITOR_RETURN
@@ -338,7 +338,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
338
338
destination1_->begin_array (tag, context, ec);
339
339
if (JSONCONS_UNLIKELY (ec))
340
340
{
341
- return ;
341
+ JSONCONS_VISITOR_RETURN
342
342
}
343
343
destination2_->begin_array (tag, context, ec);
344
344
JSONCONS_VISITOR_RETURN
@@ -349,7 +349,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
349
349
destination1_->begin_array (length, tag, context, ec);
350
350
if (JSONCONS_UNLIKELY (ec))
351
351
{
352
- return ;
352
+ JSONCONS_VISITOR_RETURN
353
353
}
354
354
destination2_->begin_array (length, tag, context, ec);
355
355
JSONCONS_VISITOR_RETURN
@@ -360,7 +360,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
360
360
destination1_->end_array (context, ec);
361
361
if (JSONCONS_UNLIKELY (ec))
362
362
{
363
- return ;
363
+ JSONCONS_VISITOR_RETURN
364
364
}
365
365
destination2_->end_array (context, ec);
366
366
JSONCONS_VISITOR_RETURN
@@ -373,7 +373,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
373
373
destination1_->key (name, context, ec);
374
374
if (JSONCONS_UNLIKELY (ec))
375
375
{
376
- return ;
376
+ JSONCONS_VISITOR_RETURN
377
377
}
378
378
destination2_->key (name, context, ec);
379
379
JSONCONS_VISITOR_RETURN
@@ -387,7 +387,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
387
387
destination1_->string_value (value, tag, context, ec);
388
388
if (JSONCONS_UNLIKELY (ec))
389
389
{
390
- return ;
390
+ JSONCONS_VISITOR_RETURN
391
391
}
392
392
destination2_->string_value (value, tag, context, ec);
393
393
JSONCONS_VISITOR_RETURN
@@ -401,7 +401,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
401
401
destination1_->byte_string_value (b, tag, context, ec);
402
402
if (JSONCONS_UNLIKELY (ec))
403
403
{
404
- return ;
404
+ JSONCONS_VISITOR_RETURN
405
405
}
406
406
destination2_->byte_string_value (b, tag, context, ec);
407
407
JSONCONS_VISITOR_RETURN
@@ -415,7 +415,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
415
415
destination1_->byte_string_value (b, ext_tag, context, ec);
416
416
if (JSONCONS_UNLIKELY (ec))
417
417
{
418
- return ;
418
+ JSONCONS_VISITOR_RETURN
419
419
}
420
420
destination2_->byte_string_value (b, ext_tag, context, ec);
421
421
JSONCONS_VISITOR_RETURN
@@ -426,7 +426,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
426
426
destination1_->uint64_value (value, tag, context, ec);
427
427
if (JSONCONS_UNLIKELY (ec))
428
428
{
429
- return ;
429
+ JSONCONS_VISITOR_RETURN
430
430
}
431
431
destination2_->uint64_value (value, tag, context, ec);
432
432
JSONCONS_VISITOR_RETURN
@@ -437,7 +437,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
437
437
destination1_->int64_value (value, tag, context, ec);
438
438
if (JSONCONS_UNLIKELY (ec))
439
439
{
440
- return ;
440
+ JSONCONS_VISITOR_RETURN
441
441
}
442
442
destination2_->int64_value (value, tag, context, ec);
443
443
JSONCONS_VISITOR_RETURN
@@ -448,7 +448,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
448
448
destination1_->half_value (value, tag, context, ec);
449
449
if (JSONCONS_UNLIKELY (ec))
450
450
{
451
- return ;
451
+ JSONCONS_VISITOR_RETURN
452
452
}
453
453
destination2_->half_value (value, tag, context, ec);
454
454
JSONCONS_VISITOR_RETURN
@@ -459,7 +459,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
459
459
destination1_->double_value (value, tag, context, ec);
460
460
if (JSONCONS_UNLIKELY (ec))
461
461
{
462
- return ;
462
+ JSONCONS_VISITOR_RETURN
463
463
}
464
464
destination2_->double_value (value, tag, context, ec);
465
465
JSONCONS_VISITOR_RETURN
@@ -470,7 +470,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
470
470
destination1_->bool_value (value, tag, context, ec);
471
471
if (JSONCONS_UNLIKELY (ec))
472
472
{
473
- return ;
473
+ JSONCONS_VISITOR_RETURN
474
474
}
475
475
destination2_->bool_value (value, tag, context, ec);
476
476
JSONCONS_VISITOR_RETURN
@@ -481,7 +481,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
481
481
destination1_->null_value (tag, context, ec);
482
482
if (JSONCONS_UNLIKELY (ec))
483
483
{
484
- return ;
484
+ JSONCONS_VISITOR_RETURN
485
485
}
486
486
destination2_->null_value (tag, context, ec);
487
487
JSONCONS_VISITOR_RETURN
@@ -495,7 +495,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
495
495
destination1_->typed_array (s, tag, context, ec);
496
496
if (JSONCONS_UNLIKELY (ec))
497
497
{
498
- return ;
498
+ JSONCONS_VISITOR_RETURN
499
499
}
500
500
destination2_->typed_array (s, tag, context, ec);
501
501
JSONCONS_VISITOR_RETURN
@@ -509,7 +509,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
509
509
destination1_->typed_array (s, tag, context, ec);
510
510
if (JSONCONS_UNLIKELY (ec))
511
511
{
512
- return ;
512
+ JSONCONS_VISITOR_RETURN
513
513
}
514
514
destination2_->typed_array (s, tag, context, ec);
515
515
JSONCONS_VISITOR_RETURN
@@ -523,7 +523,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
523
523
destination1_->typed_array (s, tag, context, ec);
524
524
if (JSONCONS_UNLIKELY (ec))
525
525
{
526
- return ;
526
+ JSONCONS_VISITOR_RETURN
527
527
}
528
528
destination2_->typed_array (s, tag, context, ec);
529
529
JSONCONS_VISITOR_RETURN
@@ -537,7 +537,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
537
537
destination1_->typed_array (s, tag, context, ec);
538
538
if (JSONCONS_UNLIKELY (ec))
539
539
{
540
- return ;
540
+ JSONCONS_VISITOR_RETURN
541
541
}
542
542
destination2_->typed_array (s, tag, context, ec);
543
543
JSONCONS_VISITOR_RETURN
@@ -551,7 +551,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
551
551
destination1_->typed_array (s, tag, context, ec);
552
552
if (JSONCONS_UNLIKELY (ec))
553
553
{
554
- return ;
554
+ JSONCONS_VISITOR_RETURN
555
555
}
556
556
destination2_->typed_array (s, tag, context, ec);
557
557
JSONCONS_VISITOR_RETURN
@@ -565,7 +565,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
565
565
destination1_->typed_array (s, tag, context, ec);
566
566
if (JSONCONS_UNLIKELY (ec))
567
567
{
568
- return ;
568
+ JSONCONS_VISITOR_RETURN
569
569
}
570
570
destination2_->typed_array (s, tag, context, ec);
571
571
JSONCONS_VISITOR_RETURN
@@ -579,7 +579,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
579
579
destination1_->typed_array (s, tag, context, ec);
580
580
if (JSONCONS_UNLIKELY (ec))
581
581
{
582
- return ;
582
+ JSONCONS_VISITOR_RETURN
583
583
}
584
584
destination2_->typed_array (s, tag, context, ec);
585
585
JSONCONS_VISITOR_RETURN
@@ -593,7 +593,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
593
593
destination1_->typed_array (s, tag, context, ec);
594
594
if (JSONCONS_UNLIKELY (ec))
595
595
{
596
- return ;
596
+ JSONCONS_VISITOR_RETURN
597
597
}
598
598
destination2_->typed_array (s, tag, context, ec);
599
599
JSONCONS_VISITOR_RETURN
@@ -608,7 +608,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
608
608
destination1_->typed_array (half_arg, s, tag, context, ec);
609
609
if (JSONCONS_UNLIKELY (ec))
610
610
{
611
- return ;
611
+ JSONCONS_VISITOR_RETURN
612
612
}
613
613
destination2_->typed_array (half_arg, s, tag, context, ec);
614
614
JSONCONS_VISITOR_RETURN
@@ -622,7 +622,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
622
622
destination1_->typed_array (s, tag, context, ec);
623
623
if (JSONCONS_UNLIKELY (ec))
624
624
{
625
- return ;
625
+ JSONCONS_VISITOR_RETURN
626
626
}
627
627
destination2_->typed_array (s, tag, context, ec);
628
628
JSONCONS_VISITOR_RETURN
@@ -636,7 +636,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
636
636
destination1_->typed_array (s, tag, context, ec);
637
637
if (JSONCONS_UNLIKELY (ec))
638
638
{
639
- return ;
639
+ JSONCONS_VISITOR_RETURN
640
640
}
641
641
destination2_->typed_array (s, tag, context, ec);
642
642
JSONCONS_VISITOR_RETURN
@@ -650,7 +650,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
650
650
destination1_->begin_multi_dim (shape, tag, context, ec);
651
651
if (JSONCONS_UNLIKELY (ec))
652
652
{
653
- return ;
653
+ JSONCONS_VISITOR_RETURN
654
654
}
655
655
destination2_->begin_multi_dim (shape, tag, context, ec);
656
656
JSONCONS_VISITOR_RETURN
@@ -662,7 +662,7 @@ class basic_json_tee : public basic_json_visitor<CharT>
662
662
destination1_->end_multi_dim (context, ec);
663
663
if (JSONCONS_UNLIKELY (ec))
664
664
{
665
- return ;
665
+ JSONCONS_VISITOR_RETURN
666
666
}
667
667
destination2_->end_multi_dim (context, ec);
668
668
JSONCONS_VISITOR_RETURN
0 commit comments