| 981 | bool on_bool( bool, system::error_code& ) { return true; } |
| 982 | bool on_null( system::error_code& ) { return true; } |
| 983 | bool on_comment_part( string_view s, system::error_code& ) |
| 984 | { |
| 985 | captured.append(s.data(), s.size()); |
| 986 | return true; |
| 987 | } |
| 988 | bool on_comment( string_view s, system::error_code& ) |
| 989 | { |
| 990 | captured.append(s.data(), s.size()); |