From 3205a92ad872f918c8322cdcd1434c231a1fd251 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Mon, 17 Feb 2020 18:06:54 -0300 Subject: PoolVector is gone, replaced by Vector Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector`. --- core/object.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/object.cpp') diff --git a/core/object.cpp b/core/object.cpp index 9a5cfe5c22..0a7a46a7d2 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -1075,9 +1075,9 @@ Array Object::_get_method_list_bind() const { return ret; } -PoolVector Object::_get_meta_list_bind() const { +Vector Object::_get_meta_list_bind() const { - PoolVector _metaret; + Vector _metaret; List keys; metadata.get_key_list(&keys); -- cgit v1.2.3