summaryrefslogtreecommitdiff
path: root/indra/llmath/llvolume.cpp
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-06-04 08:46:00 +0100
committerTofu Linden <tofu.linden@lindenlab.com>2010-06-04 08:46:00 +0100
commit087b7499082c7f0ae867990a102bc8f90a83471d (patch)
treeedb54212fdf246711074bbb00bd0a330d450c654 /indra/llmath/llvolume.cpp
parentca1caeb1deedd1b8e59a90223153ca6f05914b95 (diff)
fix scoping issues for gcc
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 72833c019f..ef1ab57036 100644
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -4406,7 +4406,7 @@ S32 LLVolume::lineSegmentIntersect(const LLVector4a& start, const LLVector4a& en
face.createOctree();
}
- LLVector4a* p = (LLVector4a*) face.mPositions;
+ //LLVector4a* p = (LLVector4a*) face.mPositions;
LLOctreeTriangleRayIntersect intersect(start, dir, &face, &closest_t, intersection, tex_coord, normal, bi_normal);
intersect.traverse(face.mOctree);