diff options
| author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2025-04-17 19:50:30 +0200 |
|---|---|---|
| committer | Ansariel <ansariel.hiller@phoenixviewer.com> | 2025-04-17 19:50:30 +0200 |
| commit | 4c6afbbb75076e9fd34ee5707a02195c4e2f7223 (patch) | |
| tree | b2aadd1082e28b92892755f6b2dfb64edc098ad4 /indra/llmath/xform.h | |
| parent | 441c844ec8319f4c15d59de5a5a8ae46be7912f1 (diff) | |
Restore llmath improvements from archived develop branch:
* Make eligible functions constexpr
* Use constants for vector indices where applicable
* Reformat to match actual coding conventions
Diffstat (limited to 'indra/llmath/xform.h')
| -rw-r--r-- | indra/llmath/xform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/xform.h b/indra/llmath/xform.h index 7434301670..fa45fffeae 100644 --- a/indra/llmath/xform.h +++ b/indra/llmath/xform.h @@ -115,7 +115,7 @@ public: void clearChanged(U32 bits) { mChanged &= ~bits; } void setScaleChildOffset(bool scale) { mScaleChildOffset = scale; } - bool getScaleChildOffset() { return mScaleChildOffset; } + bool getScaleChildOffset() const { return mScaleChildOffset; } LLXform* getParent() const { return mParent; } LLXform* getRoot() const; |
