| 1059 | return true; |
| 1060 | } |
| 1061 | template <typename Iter> bool parse_string(input<Iter> &in) { |
| 1062 | dummy_str s; |
| 1063 | return _parse_string(s, in); |
| 1064 | } |
| 1065 | bool parse_array_start() { |
| 1066 | if (depths_ == 0) |
| 1067 | return false; |
nothing calls this directly
no test coverage detected