Use range iterators for RBSet in most cases
This commit is contained in:
@ -83,8 +83,8 @@ void EditorPropertyRootMotion::_node_assign() {
|
||||
|
||||
HashMap<String, TreeItem *> parenthood;
|
||||
|
||||
for (RBSet<String>::Element *E = paths.front(); E; E = E->next()) {
|
||||
NodePath path = E->get();
|
||||
for (const String &E : paths) {
|
||||
NodePath path = E;
|
||||
TreeItem *ti = nullptr;
|
||||
String accum;
|
||||
for (int i = 0; i < path.get_name_count(); i++) {
|
||||
|
||||
Reference in New Issue
Block a user