internal: Remove some unused lambda captures (#8218)

This commit is contained in:
Honkazel 2024-10-24 17:12:41 +05:00 committed by GitHub
parent cdac64970e
commit f603a22af0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View file

@ -197,7 +197,7 @@ CTabletPad::CTabletPad(SP<Aquamarine::ITabletPad> pad_) : pad(pad_) {
});
});
listeners.attach = pad->events.attach.registerListener([this](std::any d) {
listeners.attach = pad->events.attach.registerListener([](std::any d) {
; // TODO: this doesn't do anything in aq atm
});