summaryrefslogtreecommitdiff
path: root/indra/llmath
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-04-25 06:54:10 +0800
committerErik Kundiman <erik@megapahit.org>2026-04-25 06:54:10 +0800
commitd1f106774adcd850fca0bbe9167f6c214d4263a5 (patch)
treeb29e4db7e9f57edce25a669f1bf4ac8cb946dd0d /indra/llmath
parentdf9970272800a71c180aa73fe2f71eb2f1b95fd5 (diff)
parent4ccf6d90efe34475a39c89bf40f17c0d56a3ce1a (diff)
Merge tag 'Second_Life_Release#4ccf6d90-26.2' into 2026.02
Diffstat (limited to 'indra/llmath')
-rw-r--r--indra/llmath/v3math.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/indra/llmath/v3math.h b/indra/llmath/v3math.h
index 0e11dca876..196ecdcf7d 100644
--- a/indra/llmath/v3math.h
+++ b/indra/llmath/v3math.h
@@ -155,7 +155,6 @@ class LLVector3
friend const LLVector3& operator*=(LLVector3 &a, const LLVector3 &b); // Returns a * b;
friend const LLVector3& operator*=(LLVector3 &a, F32 k); // Return a times scaler k
friend const LLVector3& operator/=(LLVector3 &a, F32 k); // Return a divided by scaler k
- friend const LLVector3& operator/=(LLVector3& a, const LLVector3& b);
friend const LLVector3& operator*=(LLVector3 &a, const LLQuaternion &b); // Returns a * b;
friend LLVector3 operator-(const LLVector3 &a); // Return vector -a
@@ -461,14 +460,6 @@ inline const LLVector3& operator/=(LLVector3& a, F32 k)
return a;
}
-inline const LLVector3& operator/=(LLVector3& a, const LLVector3& b)
-{
- a.mV[VX] /= b.mV[VX];
- a.mV[VY] /= b.mV[VY];
- a.mV[VZ] /= b.mV[VZ];
- return a;
-}
-
inline LLVector3 operator-(const LLVector3& a)
{
return LLVector3(-a.mV[VX], -a.mV[VY], -a.mV[VZ]);