From 3587eef6eb80104b8c411ec0f881f233452bcebf Mon Sep 17 00:00:00 2001 From: Kim Date: Mon, 11 Mar 2013 22:44:53 +0100 Subject: [PATCH] bugfix : fix a w4 compiler warning. Signed-off-by: Kim --- code/IFCBoolean.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/IFCBoolean.cpp b/code/IFCBoolean.cpp index 696137d9f..911f23a44 100644 --- a/code/IFCBoolean.cpp +++ b/code/IFCBoolean.cpp @@ -381,7 +381,8 @@ void ProcessPolygonalBoundedBooleanHalfSpaceDifference(const IfcPolygonalBounded unsigned int newcount = 0; bool was_outside_boundary = !PointInPoly(proj * in[vidx], profile->verts); - size_t last_intersected_boundary_segment; + // used any more? + //size_t last_intersected_boundary_segment; IfcVector3 last_intersected_boundary_point; bool extra_point_flag = false;