aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api')
-rw-r--r--src/crepe/api/Vector2.hpp2
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