diff options
author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-06-20 16:02:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 16:02:10 -0700 |
commit | 68963019cd62fedf94ade25c83f22804ec237818 (patch) | |
tree | 958d58f7e236ec6d1f5773ef30300a5e3314e832 /indra/llmath | |
parent | 2515f422cfea1d2ad6947022636c1e3a70f4b282 (diff) | |
parent | a52391d582ec7299273d3ff38efdb2455da7700e (diff) |
Merge pull request #1791 from secondlife/brad/webrtc-voice-develop
webrtc-voice merge to develop
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/llquaternion.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmath/llquaternion.h b/indra/llmath/llquaternion.h index 2caa993007..6136c59ed1 100644 --- a/indra/llmath/llquaternion.h +++ b/indra/llmath/llquaternion.h @@ -132,6 +132,7 @@ public: friend LLQuaternion operator~(const LLQuaternion &a); // Returns a* (Conjugate of a) bool operator==(const LLQuaternion &b) const; // Returns a == b bool operator!=(const LLQuaternion &b) const; // Returns a != b + F64 operator[](int idx) const { return mQ[idx]; } friend const LLQuaternion& operator*=(LLQuaternion &a, const LLQuaternion &b); // Returns a * b |