diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-04-15 15:18:34 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-04 16:08:55 +0200 |
commit | 955d5affa857ec1f358c56da8fb1ff4ab6590704 (patch) | |
tree | b667ac9f6f62bff17ce032683c0eb09727660555 /editor/plugins/editor_debugger_plugin.cpp | |
parent | 7ebc866418b075df58cbe4e31fcf8b0c3acd70a1 (diff) | |
download | redot-engine-955d5affa857ec1f358c56da8fb1ff4ab6590704.tar.gz |
Reduce and prevent unnecessary random-access to `List`
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)
* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
Diffstat (limited to 'editor/plugins/editor_debugger_plugin.cpp')
-rw-r--r-- | editor/plugins/editor_debugger_plugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/plugins/editor_debugger_plugin.cpp b/editor/plugins/editor_debugger_plugin.cpp index af9ff5056a..1adbce7941 100644 --- a/editor/plugins/editor_debugger_plugin.cpp +++ b/editor/plugins/editor_debugger_plugin.cpp @@ -140,8 +140,8 @@ EditorDebuggerPlugin::~EditorDebuggerPlugin() { } void EditorDebuggerPlugin::clear() { - for (int i = 0; i < sessions.size(); i++) { - sessions[i]->detach_debugger(); + for (Ref<EditorDebuggerSession> &session : sessions) { + session->detach_debugger(); } sessions.clear(); } @@ -157,13 +157,13 @@ void EditorDebuggerPlugin::setup_session(int p_idx) { Ref<EditorDebuggerSession> EditorDebuggerPlugin::get_session(int p_idx) { ERR_FAIL_INDEX_V(p_idx, sessions.size(), nullptr); - return sessions[p_idx]; + return sessions.get(p_idx); } Array EditorDebuggerPlugin::get_sessions() { Array ret; - for (int i = 0; i < sessions.size(); i++) { - ret.push_back(sessions[i]); + for (const Ref<EditorDebuggerSession> &session : sessions) { + ret.push_back(session); } return ret; } |