From f8ee0ce1853cd9eba5c378f20496bebdf4fa8061 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Mon, 12 Aug 2019 17:20:20 +0200 Subject: [PATCH] fixed typo --- src/entt/entity/registry.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entt/entity/registry.hpp b/src/entt/entity/registry.hpp index 927e9c2e6..40749f037 100644 --- a/src/entt/entity/registry.hpp +++ b/src/entt/entity/registry.hpp @@ -203,8 +203,8 @@ class basic_registry { struct pool_data { std::unique_ptr> pool; - std::unique_ptr> (* clone)(const sparse_set &); - void (* remove)(sparse_set &, basic_registry &, const Entity); + std::unique_ptr>(* clone)(const sparse_set &); + void(* remove)(sparse_set &, basic_registry &, const Entity); ENTT_ID_TYPE runtime_type; };