summaryrefslogtreecommitdiff
path: root/indra/llmath/v2math.h
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-04-25 21:32:04 +0800
committerErik Kundiman <erik@megapahit.org>2025-04-25 21:32:04 +0800
commitb74c8ee3fee8dd640f40250ed09f213afa72cefc (patch)
treecdad4aa47d4c669292591154b9c3bc1851629dd6 /indra/llmath/v2math.h
parent0dd799f109760f00103a6c58b437aaf3148adc75 (diff)
parentec6c988bbbc59aed218d3629bf0c13192f6b726c (diff)
Merge tag 'Second_Life_Release#ec6c988-2025.05' into 2025.05
Diffstat (limited to 'indra/llmath/v2math.h')
-rw-r--r--indra/llmath/v2math.h6
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();
}