| 2374 | } |
| 2375 | |
| 2376 | UInt ValueIteratorBase::index() const { |
| 2377 | const Value::CZString czstring = (*current_).first; |
| 2378 | if (!czstring.data()) |
| 2379 | return czstring.index(); |
| 2380 | return Value::UInt(-1); |
| 2381 | } |
| 2382 | |
| 2383 | JSONCPP_STRING ValueIteratorBase::name() const { |
| 2384 | char const* keey; |
no test coverage detected