From 1ec5381c1612bd739e31aa2bd04ed287b5fe2aba Mon Sep 17 00:00:00 2001 From: myaaaaaaaaa <103326468+myaaaaaaaaa@users.noreply.github.com> Date: Mon, 30 Jan 2023 11:46:56 -0500 Subject: Store Object signals in a HashMap rather than a VMap --- core/object/object.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/object/object.h') diff --git a/core/object/object.h b/core/object/object.h index 5ec69a371b..013bccb372 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -41,7 +41,6 @@ #include "core/templates/list.h" #include "core/templates/rb_map.h" #include "core/templates/safe_refcount.h" -#include "core/templates/vmap.h" #include "core/variant/callable_bind.h" #include "core/variant/variant.h" @@ -590,7 +589,7 @@ private: }; MethodInfo user; - VMap slot_map; + HashMap> slot_map; }; HashMap signal_map; -- cgit v1.2.3