mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-09 21:47:57 +00:00
General: Make use of [[maybe_unused]]
Replaces uses of (void)variable with the attribute introduced in C++17.
This commit is contained in:
@@ -89,10 +89,7 @@ public:
|
||||
void waitForRetrace() override {}
|
||||
|
||||
uintptr_t getPlatformHandle() const override { return 0; }
|
||||
bool _incomingEvent(void* event) override {
|
||||
(void)event;
|
||||
return false;
|
||||
}
|
||||
bool _incomingEvent([[maybe_unused]] void* event) override { return false; }
|
||||
void _cleanup() override {}
|
||||
|
||||
ETouchType getTouchType() const override { return ETouchType::Display; }
|
||||
|
||||
Reference in New Issue
Block a user