| 2381 | } |
| 2382 | |
| 2383 | JSONCPP_STRING ValueIteratorBase::name() const { |
| 2384 | char const* keey; |
| 2385 | char const* end; |
| 2386 | keey = memberName(&end); |
| 2387 | if (!keey) return JSONCPP_STRING(); |
| 2388 | return JSONCPP_STRING(keey, end); |
| 2389 | } |
| 2390 | |
| 2391 | char const* ValueIteratorBase::memberName() const { |
| 2392 | const char* cname = (*current_).first.data(); |
nothing calls this directly
no outgoing calls
no test coverage detected