| 2607 | ValueIterator::ValueIterator() = default; |
| 2608 | |
| 2609 | ValueIterator::ValueIterator(const Value::ObjectValues::iterator ¤t) |
| 2610 | : ValueIteratorBase(current) |
| 2611 | { |
| 2612 | } |
| 2613 | |
| 2614 | ValueIterator::ValueIterator(const ValueConstIterator &other) : ValueIteratorBase(other) |
| 2615 | { |
nothing calls this directly
no test coverage detected