flow: correctly forward allocator to members

This commit is contained in:
Michele Caini
2023-11-16 18:13:52 +01:00
parent 2ce6317c9a
commit 8372292841

View File

@@ -134,8 +134,8 @@ public:
*/
explicit basic_flow(const allocator_type &allocator)
: index{0u, allocator},
vertices{},
deps{},
vertices{allocator},
deps{allocator},
sync_on{} {}
/*! @brief Default copy constructor. */