mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Merge pull request #78345 from groud/fix_gcc13_compilation
Fix compilation on gcc13
This commit is contained in:
commit
fa268be823
@ -3690,8 +3690,9 @@ void EditorInspector::_edit_set(const String &p_name, const Variant &p_value, bo
|
||||
Variant v_undo_redo = undo_redo;
|
||||
Variant v_object = object;
|
||||
Variant v_name = p_name;
|
||||
for (int i = 0; i < EditorNode::get_singleton()->get_editor_data().get_undo_redo_inspector_hook_callback().size(); i++) {
|
||||
const Callable &callback = EditorNode::get_singleton()->get_editor_data().get_undo_redo_inspector_hook_callback()[i];
|
||||
const Vector<Callable> &callbacks = EditorNode::get_singleton()->get_editor_data().get_undo_redo_inspector_hook_callback();
|
||||
for (int i = 0; i < callbacks.size(); i++) {
|
||||
const Callable &callback = callbacks[i];
|
||||
|
||||
const Variant *p_arguments[] = { &v_undo_redo, &v_object, &v_name, &p_value };
|
||||
Variant return_value;
|
||||
|
Loading…
Reference in New Issue
Block a user