You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Use C++ iterators for Lists in many situations
This commit is contained in:
@@ -115,8 +115,8 @@ Error OS_JavaScript::execute(const String &p_path, const List<String> &p_argumen
|
||||
|
||||
Error OS_JavaScript::create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id) {
|
||||
Array args;
|
||||
for (const List<String>::Element *E = p_arguments.front(); E; E = E->next()) {
|
||||
args.push_back(E->get());
|
||||
for (const String &E : p_arguments) {
|
||||
args.push_back(E);
|
||||
}
|
||||
String json_args = Variant(args).to_json_string();
|
||||
int failed = godot_js_os_execute(json_args.utf8().get_data());
|
||||
|
||||
Reference in New Issue
Block a user