| 990 | return true; |
| 991 | } |
| 992 | template <typename Iter> bool parse_string(input<Iter> &in) { |
| 993 | *out_ = value(string_type, false); |
| 994 | return _parse_string(out_->get<std::string>(), in); |
| 995 | } |
| 996 | bool parse_array_start() { |
| 997 | if (depths_ == 0) |
| 998 | return false; |
nothing calls this directly
no test coverage detected