| 2353 | } |
| 2354 | |
| 2355 | UInt ValueIteratorBase::index() const { |
| 2356 | const Value::CZString czstring = (*current_).first; |
| 2357 | if (!czstring.data()) |
| 2358 | return czstring.index(); |
| 2359 | return Value::UInt(-1); |
| 2360 | } |
| 2361 | |
| 2362 | JSONCPP_STRING ValueIteratorBase::name() const { |
| 2363 | char const* keey; |
no test coverage detected