Remove redundant inline specifiers

In-class defined methods are specified as inline by default
This commit is contained in:
Oleg Kalachev
2025-01-04 04:09:51 +03:00
parent e10475a5e0
commit 732de2a5d6
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -168,11 +168,11 @@ public:
}
// Rotate vector by quaternion
inline Vector rotate(const Vector& v) {
Vector rotate(const Vector& v) {
return conjugateInversed(v);
}
inline bool finite() const {
bool finite() const {
return isfinite(w) && isfinite(x) && isfinite(y) && isfinite(z);
}