Browse Source

flow: cleanup

skypjack 1 month ago
parent
commit
625622c8ad
1 changed files with 4 additions and 4 deletions
  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);
     }
 
     /**