From 92eb64a8acdf19f674d4c8a169701f87cfc22111 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Fri, 11 Jun 2021 13:10:39 -0400 Subject: [PATCH] Fix bug --- indra/llmath/v4math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llmath/v4math.h b/indra/llmath/v4math.h index d91d5ee1b1b..3f98600b407 100644 --- a/indra/llmath/v4math.h +++ b/indra/llmath/v4math.h @@ -479,7 +479,7 @@ inline LLVector4 operator-(const LLVector4 &a) // [RLVa:KB] - RlvBehaviourModifierCompMin/Max inline bool operator<(const LLVector4& lhs, const LLVector4& rhs) { - return std::tie(lhs.mV[0], lhs.mV[1], lhs.mV[2], rhs.mV[3]) < std::tie(rhs.mV[0], rhs.mV[1], rhs.mV[2], rhs.mV[3]); + return std::tie(lhs.mV[0], lhs.mV[1], lhs.mV[2], lhs.mV[3]) < std::tie(rhs.mV[0], rhs.mV[1], rhs.mV[2], rhs.mV[3]); } // [/RLVa:KB] -- GitLab