diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmath/v4math.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/linden/indra/llmath/v4math.h b/linden/indra/llmath/v4math.h index 06ac777..f768ba7 100644 --- a/linden/indra/llmath/v4math.h +++ b/linden/indra/llmath/v4math.h | |||
@@ -40,10 +40,6 @@ class LLQuaternion; | |||
40 | 40 | ||
41 | static const U32 LENGTHOFVECTOR4 = 4; | 41 | static const U32 LENGTHOFVECTOR4 = 4; |
42 | 42 | ||
43 | #if LL_WINDOWS | ||
44 | __declspec( align(16) ) | ||
45 | #endif | ||
46 | |||
47 | class LLVector4 | 43 | class LLVector4 |
48 | { | 44 | { |
49 | public: | 45 | public: |
@@ -114,12 +110,7 @@ class LLVector4 | |||
114 | friend const LLVector4& operator/=(LLVector4 &a, F32 k); // Return a divided by scaler k | 110 | friend const LLVector4& operator/=(LLVector4 &a, F32 k); // Return a divided by scaler k |
115 | 111 | ||
116 | friend LLVector4 operator-(const LLVector4 &a); // Return vector -a | 112 | friend LLVector4 operator-(const LLVector4 &a); // Return vector -a |
117 | } | 113 | }; |
118 | #if LL_DARWIN | ||
119 | __attribute__ ((aligned (16))) | ||
120 | #endif | ||
121 | ; | ||
122 | |||
123 | 114 | ||
124 | // Non-member functions | 115 | // Non-member functions |
125 | F32 angle_between(const LLVector4 &a, const LLVector4 &b); // Returns angle (radians) between a and b | 116 | F32 angle_between(const LLVector4 &a, const LLVector4 &b); // Returns angle (radians) between a and b |