From 837229284171c41889f45e1e3584180540112d15 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 16 Nov 2023 18:13:52 +0100 Subject: [PATCH] flow: correctly forward allocator to members --- src/entt/graph/flow.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entt/graph/flow.hpp b/src/entt/graph/flow.hpp index 54f0c12a9a..f54c3abd65 100644 --- a/src/entt/graph/flow.hpp +++ b/src/entt/graph/flow.hpp @@ -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. */