Needed_changes_to_compile_with_gcc_13.2.1 (#2224)

* Needed_changes_to_compile_with_gcc_13.2.1

* re-activate_length_binary_size_protect
This commit is contained in:
Brumi-2021 2024-08-15 19:31:34 +02:00 committed by GitHub
parent c992780974
commit 6dc7e3dfc5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -281,6 +281,7 @@ void EventDispatcher::emulateTouch(ui::TouchEvent event) {
while (injected_touch_event != nullptr) {
chThdSleepMilliseconds(5);
}
injected_touch_event = nullptr; // to clean event_mo.cpp, compile warning error : "storing the address of local variable 'event' in 'this_4(D)->injected_touch_event' [-Wdangling-pointer=]"
}
void EventDispatcher::emulateKeyboard(ui::KeyboardEvent event) {
@ -288,6 +289,7 @@ void EventDispatcher::emulateKeyboard(ui::KeyboardEvent event) {
while (injected_keyboard_event != nullptr) {
chThdSleepMilliseconds(5);
}
injected_keyboard_event = nullptr; // to clean event_mo.cpp, compile warning error : "storing the address of local variable 'event' in 'this_4(D)->injected_keyboard_event' [-Wdangling-pointer=]"
}
void EventDispatcher::on_keyboard_event(ui::KeyboardEvent event) {