aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2025-01-08 15:24:38 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2025-01-08 15:24:38 +0100
commit12cf43dd062f41af226e0ac038b2f2838391015f (patch)
tree6c00434a29b8c2302eb85ead1fce96a2856aec09 /src/crepe
parentf22a282b7863d35928fa3290f964ce3be5c0dbc9 (diff)
`make format`
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/api/Vector2.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Vector2.hpp b/src/crepe/api/Vector2.hpp
index e2f96ed..30441d2 100644
--- a/src/crepe/api/Vector2.hpp
+++ b/src/crepe/api/Vector2.hpp
@@ -180,7 +180,7 @@ Vector2<T> Vector2<T>::rotate(float deg) const {
} // namespace crepe
template <typename T>
-std::format_context::iterator std::formatter<crepe::Vector2<T>>::format(crepe::Vector2<T> vec, format_context & ctx) const {
+std::format_context::iterator
+std::formatter<crepe::Vector2<T>>::format(crepe::Vector2<T> vec, format_context & ctx) const {
return formatter<string>::format(std::format("{{{}, {}}}", vec.x, vec.y), ctx);
}
-