فهرست منبع

Added ReferenceType::operator!=()

Benoit Blanchon 11 سال پیش
والد
کامیت
2f8fde6772
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      include/ArduinoJson/Internals/ReferenceType.hpp

+ 2 - 0
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() {}