Przeglądaj źródła

storage: suppress wrong use-after-move warning

Michele Caini 1 rok temu
rodzic
commit
97befad59a
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      src/entt/entity/storage.hpp

+ 1 - 0
src/entt/entity/storage.hpp

@@ -456,6 +456,7 @@ public:
     basic_storage(basic_storage &&other, const allocator_type &allocator)
         : base_type{std::move(other), allocator},
           payload{std::move(other.payload), allocator} {
+        // NOLINTNEXTLINE(bugprone-use-after-move)
         ENTT_ASSERT(alloc_traits::is_always_equal::value || get_allocator() == other.get_allocator(), "Copying a storage is not allowed");
     }