summaryrefslogtreecommitdiff
path: root/indra/llmath/llvector4a.inl
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-06-12 09:38:04 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-06-12 09:38:04 -0700
commit1a37ea367159b1ba6c5284add8dd338f96b64e84 (patch)
tree3d7f3f1ec8275bc760c58f90678791ae41a77c66 /indra/llmath/llvector4a.inl
parentd2b253f1f6072beead770519849ad3b18a1a4359 (diff)
Pedantic adj overly concerned with minute details or formalisms
Diffstat (limited to 'indra/llmath/llvector4a.inl')
-rwxr-xr-xindra/llmath/llvector4a.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmath/llvector4a.inl b/indra/llmath/llvector4a.inl
index 6860252a75..d3e8a1c933 100755
--- a/indra/llmath/llvector4a.inl
+++ b/indra/llmath/llvector4a.inl
@@ -417,14 +417,14 @@ inline void LLVector4a::normalize3fast()
// Normalize this vector with respect to the x, y, and z components only. Accurate only to 10-12 bits of precision. W component is destroyed
// Note that this does not consider zero length vectors!
-inline void LLVector4a::normalize3fast_checked(LLVector4a* default)
+inline void LLVector4a::normalize3fast_checked(LLVector4a* d)
{
// handle bogus inputs before NaNs are generated below
//
if (!isFinite3() || (dot3(*this).getF32() < F_APPROXIMATELY_ZERO))
{
- if (default)
- *this = *default;
+ if (d)
+ *this = *d;
else
set(0,1,0,1);