| 1072 | return _parse(*this, in); |
| 1073 | } |
| 1074 | bool parse_array_stop(size_t) { |
| 1075 | ++depths_; |
| 1076 | return true; |
| 1077 | } |
| 1078 | bool parse_object_start() { |
| 1079 | if (depths_ == 0) |
| 1080 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected