Update removeMember docs after #693

This commit is contained in:
Orivej Desh 2018-11-26 18:24:18 +00:00 committed by Hans Johnson
parent 08ddeed927
commit d8723104f3

View File

@ -538,14 +538,11 @@ Json::Value obj_value(Json::objectValue); // {}
/// \brief Remove and return the named member. /// \brief Remove and return the named member.
/// ///
/// Do nothing if it did not exist. /// Do nothing if it did not exist.
/// \return the removed Value, or null.
/// \pre type() is objectValue or nullValue /// \pre type() is objectValue or nullValue
/// \post type() is unchanged /// \post type() is unchanged
/// \deprecated
void removeMember(const char* key); void removeMember(const char* key);
/// Same as removeMember(const char*) /// Same as removeMember(const char*)
/// \param key may contain embedded nulls. /// \param key may contain embedded nulls.
/// \deprecated
void removeMember(const JSONCPP_STRING& key); void removeMember(const JSONCPP_STRING& key);
/// Same as removeMember(const char* begin, const char* end, Value* removed), /// Same as removeMember(const char* begin, const char* end, Value* removed),
/// but 'key' is null-terminated. /// but 'key' is null-terminated.