| 2093 | } |
| 2094 | |
| 2095 | std::string ValueIteratorBase::name() const { |
| 2096 | char const* keey; |
| 2097 | char const* end; |
| 2098 | keey = memberName(&end); |
| 2099 | if (!keey) return std::string(); |
| 2100 | return std::string(keey, end); |
| 2101 | } |
| 2102 | |
| 2103 | char const* ValueIteratorBase::memberName() const { |
| 2104 | const char* cname = (*current_).first.data(); |
no outgoing calls