summaryrefslogtreecommitdiff
path: root/indra/llmath/llvolume.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-11-21 03:06:47 -0600
committerDave Parks <davep@lindenlab.com>2010-11-21 03:06:47 -0600
commitc149a0020bfc6983e7ce7a2426f324a6b8e75495 (patch)
treeef04a87b7718e9680ffec8a69bc8f03a9a974854 /indra/llmath/llvolume.cpp
parente4b502793da09c746d3b0c13782ec9ffb90c54d2 (diff)
Get rid of pointless redirection and malloc/free.
Diffstat (limited to 'indra/llmath/llvolume.cpp')
-rw-r--r--indra/llmath/llvolume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index 9fe4c622d7..c20124076b 100644
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -5522,7 +5522,7 @@ void LLVolumeFace::createOctree(F32 scaler, const LLVector4a& center, const LLVe
center.setAdd(min, max);
center.mul(0.5f);
- *tri->mPositionGroup = center;
+ tri->mPositionGroup = center;
//compute "radius"
LLVector4a size;