Skip to content

Commit

Permalink
flow: correctly forward allocator to members
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed Nov 16, 2023
1 parent 2ce6317 commit 8372292
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entt/graph/flow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ class basic_flow {
*/
explicit basic_flow(const allocator_type &allocator)
: index{0u, allocator},
vertices{},
deps{},
vertices{allocator},
deps{allocator},
sync_on{} {}

/*! @brief Default copy constructor. */
Expand Down

0 comments on commit 8372292

Please sign in to comment.