| 1541 | return true; |
| 1542 | } |
| 1543 | bool on_double( double, string_view sv, system::error_code& ) |
| 1544 | { |
| 1545 | captured.append(sv.data(), sv.size()); |
| 1546 | captured += 'd'; |
| 1547 | return true; |
| 1548 | } |
| 1549 | bool on_bool( bool, system::error_code& ) { return true; } |
| 1550 | bool on_null( system::error_code& ) { return true; } |
| 1551 | bool on_comment_part( string_view, system::error_code& ) { return true; } |