diff --git a/include/blt/math/vectors.h b/include/blt/math/vectors.h index 0f1ff7a..bdf5d67 100644 --- a/include/blt/math/vectors.h +++ b/include/blt/math/vectors.h @@ -63,7 +63,7 @@ namespace blt { return std::sqrt(total); } - [[nodiscard]] inline vec& normalize() const { + [[nodiscard]] inline vec normalize() const { auto mag = this->magnitude(); if (mag == 0) return *this;