Przeglądaj źródła

scheduler: swap based move assignment operator

Michele Caini 1 rok temu
rodzic
commit
63d6db37d8
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/entt/process/scheduler.hpp

+ 1 - 1
src/entt/process/scheduler.hpp

@@ -145,7 +145,7 @@ public:
      */
     basic_scheduler &operator=(basic_scheduler &&other) noexcept {
         ENTT_ASSERT(alloc_traits::is_always_equal::value || get_allocator() == other.get_allocator(), "Copying a scheduler is not allowed");
-        handlers = std::move(other.handlers);
+        swap(other);
         return *this;
     }