| 170 | ValueIterator::ValueIterator() = default; |
| 171 | |
| 172 | ValueIterator::ValueIterator(const Value::ObjectValues::iterator& current) |
| 173 | : ValueIteratorBase(current) { |
| 174 | } |
| 175 | |
| 176 | ValueIterator::ValueIterator(const ValueConstIterator& other) |
| 177 | : ValueIteratorBase(other) { |
nothing calls this directly
no test coverage detected