You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
Use const references where possible for List range iterators
This commit is contained in:
@@ -407,7 +407,7 @@ Array Signal::get_connections() const {
|
||||
object->get_signal_connection_list(name, &connections);
|
||||
|
||||
Array arr;
|
||||
for (Object::Connection &E : connections) {
|
||||
for (const Object::Connection &E : connections) {
|
||||
arr.push_back(E);
|
||||
}
|
||||
return arr;
|
||||
|
||||
Reference in New Issue
Block a user