| 2407 | ValueIterator::ValueIterator() = default; |
| 2408 | |
| 2409 | ValueIterator::ValueIterator(const Value::ObjectValues::iterator& current) |
| 2410 | : ValueIteratorBase(current) {} |
| 2411 | |
| 2412 | ValueIterator::ValueIterator(const ValueConstIterator& other) |
| 2413 | : ValueIteratorBase(other) { |
nothing calls this directly
no test coverage detected