Add proper type to most public API uses of Array

This commit is contained in:
Juan Linietsky 2020-04-21 12:16:45 -03:00
parent 79f82bd742
commit f8ef38efed
26 changed files with 156 additions and 165 deletions

View file

@ -1066,9 +1066,9 @@ Array EditorSelection::_get_transformable_selected_nodes() {
return ret;
}
Array EditorSelection::get_selected_nodes() {
TypedArray<Node> EditorSelection::get_selected_nodes() {
Array ret;
TypedArray<Node> ret;
for (Map<Node *, Object *>::Element *E = selection.front(); E; E = E->next()) {