diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-19 20:27:39 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-19 20:27:39 +0100 |
commit | 3894948275e10b6a0e3614ba0da90b9ea8d6cd4e (patch) | |
tree | 8c2513cb9bcf955238bc5b9af6bbfbda7dcc525d /src/crepe/api | |
parent | 34d36c27549d54592051083aea6675dbaa9bb1fa (diff) |
make format
Diffstat (limited to 'src/crepe/api')
-rw-r--r-- | src/crepe/api/Vector2.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/Vector2.hpp b/src/crepe/api/Vector2.hpp index a470595..e195760 100644 --- a/src/crepe/api/Vector2.hpp +++ b/src/crepe/api/Vector2.hpp @@ -165,7 +165,7 @@ Vector2<T> Vector2<T>::perpendicular() const { template <class T> bool Vector2<T>::is_nan() const { - return std::isnan(x) && std::isnan(y); + return std::isnan(x) && std::isnan(y); } } // namespace crepe |