diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-12-15 12:48:07 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-12-15 12:48:07 -0500 |
commit | e4a1b12e7a9c4bb8cbc2a1e41fddb8cec5a1b1e0 (patch) | |
tree | a74d7e087c6c440e31e319f76f90beb315a27617 /indra/llmath/llplane.h | |
parent | e68d5e248f73180def7c8928b32482347dd91de4 (diff) |
SH-2789 WIP - build without tcmalloc, force alignment in various places
Diffstat (limited to 'indra/llmath/llplane.h')
-rwxr-xr-x[-rw-r--r--] | indra/llmath/llplane.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llmath/llplane.h b/indra/llmath/llplane.h index a611894721..3c32441b11 100644..100755 --- a/indra/llmath/llplane.h +++ b/indra/llmath/llplane.h @@ -36,6 +36,8 @@ // The plane normal = [A, B, C] // The closest approach = D / sqrt(A*A + B*B + C*C) + +LL_ALIGN_PREFIX(16) class LLPlane { public: @@ -94,7 +96,7 @@ public: private: LLVector4a mV; -}; +} LL_ALIGN_POSTFIX(16); |