skypjack 5 months ago
parent
commit
de054655ab
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/entt/core/any.hpp

+ 1 - 0
src/entt/core/any.hpp

@@ -476,6 +476,7 @@ public:
      * @return False if the two objects differ in their content, true otherwise.
      * @return False if the two objects differ in their content, true otherwise.
      */
      */
     [[nodiscard]] bool operator==(const basic_any &other) const noexcept {
     [[nodiscard]] bool operator==(const basic_any &other) const noexcept {
+        // it could be a call across boundaries, but still for the same type
         if(vtable && ((vtable == other.vtable) || has_value(other.info()))) {
         if(vtable && ((vtable == other.vtable) || has_value(other.info()))) {
             return (vtable(request::compare, *this, other.data()) != nullptr);
             return (vtable(request::compare, *this, other.data()) != nullptr);
         }
         }