| 2093 | bool Value::operator!=(const Value &other) const { return !(*this == other); } |
| 2094 | |
| 2095 | const char *Value::asCString() const { |
| 2096 | JSON_ASSERT_MESSAGE(type_ == stringValue, |
| 2097 | "in Json::Value::asCString(): requires stringValue"); |
| 2098 | return value_.string_; |
| 2099 | } |
| 2100 | |
| 2101 | std::string Value::asString() const { |
| 2102 | switch (type_) { |
no outgoing calls
no test coverage detected