diff options
author | Ansariel Hiller <Ansariel@users.noreply.github.com> | 2025-04-18 22:15:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-18 23:15:47 +0300 |
commit | 74a71e30e76862d59a240a1592c4094ff82f3bf6 (patch) | |
tree | d6b2cc41eedf45137648b2fb64d5a3bde82ad3e7 /indra/llmath/v2math.h | |
parent | f5be5493706368792191eb2f85c126072a8379d8 (diff) |
Restore llmath fixes that got lost during merge (#3948)
Diffstat (limited to 'indra/llmath/v2math.h')
-rw-r--r-- | indra/llmath/v2math.h | 6 |
1 files changed, 3 insertions, 3 deletions
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(); } |