From 485e27a017c522c2c0e3f9e5796deca0ec6c26d3 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Tue, 27 Jan 2026 17:01:57 +0100 Subject: [PATCH] clang --- src/MappedInputManager.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/MappedInputManager.cpp b/src/MappedInputManager.cpp index dfd37742..e5423724 100644 --- a/src/MappedInputManager.cpp +++ b/src/MappedInputManager.cpp @@ -64,9 +64,7 @@ bool MappedInputManager::mapButton(const Button button, bool (HalGPIO::*fn)(uint bool MappedInputManager::wasPressed(const Button button) const { return mapButton(button, &HalGPIO::wasPressed); } -bool MappedInputManager::wasReleased(const Button button) const { - return mapButton(button, &HalGPIO::wasReleased); -} +bool MappedInputManager::wasReleased(const Button button) const { return mapButton(button, &HalGPIO::wasReleased); } bool MappedInputManager::isPressed(const Button button) const { return mapButton(button, &HalGPIO::isPressed); }