diff options
| author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-09-03 20:30:12 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-03 20:30:12 +0300 | 
| commit | 90aa693f2a9ece9f1c624dba245f202e126bca5b (patch) | |
| tree | fae8bca7bb3f3ac05972803e2fefc05de8542408 /indra/llmath/tests | |
| parent | 5593cde0e85d4d4b06efacffb6f00ed2fadb188a (diff) | |
| parent | 5ffcd3dc88892a651fe9a95974280efb85e18a8b (diff) | |
Merge Changes for support of apple silicon on macOS
Mac Arm
Diffstat (limited to 'indra/llmath/tests')
| -rw-r--r-- | indra/llmath/tests/llquaternion_test.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmath/tests/llquaternion_test.cpp b/indra/llmath/tests/llquaternion_test.cpp index aa3c0ad843..ba18d54d55 100644 --- a/indra/llmath/tests/llquaternion_test.cpp +++ b/indra/llmath/tests/llquaternion_test.cpp @@ -349,9 +349,9 @@ namespace tut          ensure(              "2. LLVector4 operator*(const LLVector4 &a, const LLQuaternion &rot) failed",              is_approx_equal(-58153.5390f, result.mV[0]) && -            (183787.8125f == result.mV[1]) && -            (116864.164063f == result.mV[2]) && -            (78.099998f == result.mV[3])); +            is_approx_equal(183787.8125f, result.mV[1]) && +            is_approx_equal(116864.164063f, result.mV[2]) && +            is_approx_equal(78.099998f, result.mV[3]));      }      //test case for LLVector3 operator*(const LLVector3 &a, const LLQuaternion &rot) fn.  | 
