Correct minor oops.

master
Tonya Souther 2021-02-13 19:15:03 -06:00
parent 10ae62e1cc
commit a2d1289fc7
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,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]