Browse Source

table: clean up

Michele Caini 1 year ago
parent
commit
3823d60932
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/entt/entity/table.hpp

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

@@ -219,7 +219,6 @@ public:
      */
      */
     basic_table &operator=(basic_table &&other) noexcept {
     basic_table &operator=(basic_table &&other) noexcept {
         ENTT_ASSERT(alloc_traits::is_always_equal::value || get_allocator() == other.get_allocator(), "Copying a table is not allowed");
         ENTT_ASSERT(alloc_traits::is_always_equal::value || get_allocator() == other.get_allocator(), "Copying a table is not allowed");
-
         payload = std::move(other.payload);
         payload = std::move(other.payload);
         return *this;
         return *this;
     }
     }