We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b6309 commit 4a61f4fCopy full SHA for 4a61f4f
include/json/value.h
@@ -344,9 +344,6 @@ Json::Value obj_value(Json::objectValue); // {}
344
/// otherwise, false.
345
bool empty() const;
346
347
- /// Return isNull()
348
- bool operator!() const;
349
-
350
/** \brief Return ! isNull();
351
*
352
* Example of usage:
src/lib_json/json_value.cpp
@@ -881,8 +881,6 @@ bool Value::empty() const {
881
return false;
882
}
883
884
-bool Value::operator!() const { return isNull(); }
885
886
Value::operator bool() const { return ! isNull(); }
887
888
void Value::clear() {
0 commit comments