| 2352 | ValueIterator::ValueIterator() = default; |
| 2353 | |
| 2354 | ValueIterator::ValueIterator(const Value::ObjectValues::iterator ¤t) |
| 2355 | : ValueIteratorBase(current) {} |
| 2356 | |
| 2357 | ValueIterator::ValueIterator(const ValueConstIterator &other) |
| 2358 | : ValueIteratorBase(other) { |
nothing calls this directly
no test coverage detected