forked from bblanchon/ArduinoJson
Added ReferenceType::operator!=()
This commit is contained in:
@ -18,6 +18,8 @@ class ReferenceType {
|
||||
return this == &other;
|
||||
}
|
||||
|
||||
bool operator!=(const ReferenceType& other) const { return this != &other; }
|
||||
|
||||
protected:
|
||||
ReferenceType() {}
|
||||
|
||||
|
Reference in New Issue
Block a user