Skip to content

Commit

Permalink
style: 🎨 Fix formatting in joystick_modifier.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ion098 authored Nov 4, 2024
1 parent 83c8315 commit 67695e4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions include/gamepad/joystick_modifier.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
} // namespace gamepad

0 comments on commit 67695e4

Please sign in to comment.