diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:24:38 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:24:38 +0100 |
commit | 12cf43dd062f41af226e0ac038b2f2838391015f (patch) | |
tree | 6c00434a29b8c2302eb85ead1fce96a2856aec09 /src/crepe/api/Vector2.hpp | |
parent | f22a282b7863d35928fa3290f964ce3be5c0dbc9 (diff) |
`make format`
Diffstat (limited to 'src/crepe/api/Vector2.hpp')
-rw-r--r-- | src/crepe/api/Vector2.hpp | 4 |
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); } - |