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
|
|
@ -1350,8 +1350,8 @@ Error EditorExportPlatformIOS::_export_ios_plugins(const Ref<EditorExportPreset>
|
|||
// Update Linker Flag Values
|
||||
{
|
||||
String result_linker_flags = " ";
|
||||
for (RBSet<String>::Element *E = plugin_linker_flags.front(); E; E = E->next()) {
|
||||
const String &flag = E->get();
|
||||
for (const String &E : plugin_linker_flags) {
|
||||
const String &flag = E;
|
||||
|
||||
if (flag.length() == 0) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue