From 74a71e30e76862d59a240a1592c4094ff82f3bf6 Mon Sep 17 00:00:00 2001 From: Ansariel Hiller Date: Fri, 18 Apr 2025 22:15:47 +0200 Subject: Restore llmath fixes that got lost during merge (#3948) --- indra/llmath/v2math.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'indra/llmath/v2math.h') diff --git a/indra/llmath/v2math.h b/indra/llmath/v2math.h index d9fb70e191..6b9d37535b 100644 --- a/indra/llmath/v2math.h +++ b/indra/llmath/v2math.h @@ -243,19 +243,19 @@ inline bool LLVector2::isFinite() const } // deprecated -inline F32 LLVector2::magVec(void) const +inline F32 LLVector2::magVec() const { return length(); } // deprecated -inline F32 LLVector2::magVecSquared(void) const +inline F32 LLVector2::magVecSquared() const { return lengthSquared(); } // deprecated -inline F32 LLVector2::normVec(void) +inline F32 LLVector2::normVec() { return normalize(); } -- cgit v1.2.3