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