Преглед изворни кода

snapshot: dense_map::contains is a thing fortunately

Michele Caini пре 2 година
родитељ
комит
49534eec0d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/entt/entity/snapshot.hpp

+ 1 - 1
src/entt/entity/snapshot.hpp

@@ -585,7 +585,7 @@ public:
      * @return True if `entity` is managed by the loader, false otherwise.
      */
     [[nodiscard]] bool contains(entity_type entt) const noexcept {
-        return (remloc.find(entt) != remloc.cend());
+        return remloc.contains(entt);
     }
 
     /**