aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmath/v3math.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llmath/v3math.h')
-rw-r--r--linden/indra/llmath/v3math.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmath/v3math.h b/linden/indra/llmath/v3math.h
index 7f96800..8c65d93 100644
--- a/linden/indra/llmath/v3math.h
+++ b/linden/indra/llmath/v3math.h
@@ -411,8 +411,8 @@ inline bool operator<(const LLVector3 &a, const LLVector3 &b)
411 return (a.mV[0] < b.mV[0] 411 return (a.mV[0] < b.mV[0]
412 || (a.mV[0] == b.mV[0] 412 || (a.mV[0] == b.mV[0]
413 && (a.mV[1] < b.mV[1] 413 && (a.mV[1] < b.mV[1]
414 || (a.mV[1] == b.mV[1]) 414 || ((a.mV[1] == b.mV[1])
415 && a.mV[2] < b.mV[2]))); 415 && a.mV[2] < b.mV[2]))));
416} 416}
417 417
418inline const LLVector3& operator+=(LLVector3 &a, const LLVector3 &b) 418inline const LLVector3& operator+=(LLVector3 &a, const LLVector3 &b)