Просмотр исходного кода

meta: avoid using meta_any::resolve when comparing

skypjack 7 месяцев назад
Родитель
Сommit
c5d89597fc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/entt/meta/meta.hpp

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

@@ -583,7 +583,7 @@ public:
 
     /*! @copydoc any::operator== */
     [[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!= */