diff --git a/include/gamepad/joystick_modifier.hpp b/include/gamepad/joystick_modifier.hpp index 5819917..9eacd53 100644 --- a/include/gamepad/joystick_modifier.hpp +++ b/include/gamepad/joystick_modifier.hpp @@ -74,14 +74,10 @@ class TransformationBuilder final { return *this; } - Transformation build() { - return std::move(m_transform); - } + Transformation build() { return std::move(m_transform); } - operator Transformation() { - return std::move(m_transform); - } + operator Transformation() { return std::move(m_transform); } private: Transformation m_transform {}; }; -} // namespace gamepad \ No newline at end of file +} // namespace gamepad