summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-17 14:34:37 -0700
committercallum_linden <none@none>2014-10-17 14:34:37 -0700
commitda97612b98c3f21046cb1d1f3afd61b59dc50c1e (patch)
tree27398c54aecab76a9df88f1da2e6ac1b223e882b
parent07fd457e13e2d04b3cab702aa25e515ed794fa04 (diff)
Update to build on Xcode 6.0: removed bunch of unused consts variables [-Wunused-const-variable]
-rwxr-xr-xindra/llmath/llvolume.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index 503dea2081..49cd970392 100755
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -56,8 +56,6 @@
#define DEBUG_SILHOUETTE_NORMALS 0 // TomY: Use this to display normals using the silhouette
#define DEBUG_SILHOUETTE_EDGE_MAP 0 // DaveP: Use this to display edge map using the silhouette
-const F32 CUT_MIN = 0.f;
-const F32 CUT_MAX = 1.f;
const F32 MIN_CUT_DELTA = 0.02f;
const F32 HOLLOW_MIN = 0.f;
@@ -4027,7 +4025,6 @@ LLVertexIndexPair::LLVertexIndexPair(const LLVector3 &vertex, const S32 index)
}
const F32 VERTEX_SLOP = 0.00001f;
-const F32 VERTEX_SLOP_SQRD = VERTEX_SLOP * VERTEX_SLOP;
struct lessVertex
{