| 674 | return true; |
| 675 | } |
| 676 | template <typename Iter> bool parse_object_item(input<Iter> &in, const std::string &key) |
| 677 | { |
| 678 | object &o = out_->get<object>(); |
| 679 | default_parse_context ctx(&o[key]); |
| 680 | return _parse(ctx, in); |
| 681 | } |
| 682 | |
| 683 | private: |
| 684 | default_parse_context(const default_parse_context &); |
no test coverage detected