mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Use range iterators for RBSet in most cases
This commit is contained in:
parent
71c40ff4da
commit
900c676b02
84 changed files with 782 additions and 782 deletions
|
@ -794,7 +794,7 @@ GDScriptWorkspace::~GDScriptWorkspace() {
|
|||
cached_parsers.insert(E.key);
|
||||
}
|
||||
|
||||
for (RBSet<String>::Element *E = cached_parsers.front(); E; E = E->next()) {
|
||||
remove_cache_parser(E->get());
|
||||
for (const String &E : cached_parsers) {
|
||||
remove_cache_parser(E);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue