Browse Source

meta: avoid using meta_any::resolve when comparing

skypjack 5 months ago
parent
commit
c5d89597fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/meta/meta.hpp

+ 1 - 1
src/entt/meta/meta.hpp

@@ -583,7 +583,7 @@ public:
 
 
     /*! @copydoc any::operator== */
     /*! @copydoc any::operator== */
     [[nodiscard]] bool operator==(const meta_any &other) const noexcept {
     [[nodiscard]] bool operator==(const meta_any &other) const noexcept {
-        return (ctx == other.ctx) && (resolve == other.resolve) && (storage == other.storage);
+        return (ctx == other.ctx) && (!!*this ^ !other) && (storage == other.storage);
     }
     }
 
 
     /*! @copydoc any::operator!= */
     /*! @copydoc any::operator!= */