Bläddra i källkod

meta: cleanup meta_handle further (breaking change)

skypjack 6 månader sedan
förälder
incheckning
e38e88362f
1 ändrade filer med 0 tillägg och 10 borttagningar
  1. 0 10
      src/entt/meta/meta.hpp

+ 0 - 10
src/entt/meta/meta.hpp

@@ -722,16 +722,6 @@ public:
         return static_cast<bool>(any);
     }
 
-    /*! @copydoc meta_any::operator== */
-    [[deprecated("compare underlying objects instead")]] [[nodiscard]] bool operator==(const meta_handle &other) const noexcept {
-        return (any == other.any);
-    }
-
-    /*! @copydoc meta_any::operator!= */
-    [[deprecated("compare underlying objects instead")]] [[nodiscard]] bool operator!=(const meta_handle &other) const noexcept {
-        return !(*this == other);
-    }
-
     /**
      * @brief Access operator for accessing the contained opaque object.
      * @return A wrapper that shares a reference to an unmanaged object.