From 67271e467211dc0e229425d15a1b7a4e999f8a5a Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Tue, 6 Sep 2022 09:43:34 +0200 Subject: [PATCH] registry: start to introduce the allocator (work in progress) --- src/entt/entity/registry.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/entt/entity/registry.hpp b/src/entt/entity/registry.hpp index 6a37659c6..3f2c0afc3 100644 --- a/src/entt/entity/registry.hpp +++ b/src/entt/entity/registry.hpp @@ -250,7 +250,8 @@ private: template class basic_registry { using entity_traits = entt_traits; - using basic_common_type = basic_sparse_set; + using basic_common_type = basic_sparse_set; + using alloc_traits = typename std::allocator_traits; template using storage_for_type = typename storage_for::type;