diff --git a/include/ArduinoJson/Internals/ReferenceType.hpp b/include/ArduinoJson/Internals/ReferenceType.hpp index 8c2e1a9b..ee07fd2f 100644 --- a/include/ArduinoJson/Internals/ReferenceType.hpp +++ b/include/ArduinoJson/Internals/ReferenceType.hpp @@ -18,6 +18,8 @@ class ReferenceType { return this == &other; } + bool operator!=(const ReferenceType& other) const { return this != &other; } + protected: ReferenceType() {}