skypjack 1 месяц назад
Родитель
Сommit
625622c8ad
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      src/entt/graph/flow.hpp

+ 4 - 4
src/entt/graph/flow.hpp

@@ -186,10 +186,10 @@ public:
      */
     void swap(basic_flow &other) noexcept {
         using std::swap;
-        std::swap(index, other.index);
-        std::swap(vertices, other.vertices);
-        std::swap(deps, other.deps);
-        std::swap(sync_on, other.sync_on);
+        swap(index, other.index);
+        swap(vertices, other.vertices);
+        swap(deps, other.deps);
+        swap(sync_on, other.sync_on);
     }
 
     /**