From 217a7c6599a2dacfc9b5827ed3df899e73666cf4 Mon Sep 17 00:00:00 2001 From: Jang Myeongho Date: Wed, 27 Jun 2012 15:59:09 +0000 Subject: [PATCH] added break statements. --- src/ifcgeom/IfcGeomFunctions.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ifcgeom/IfcGeomFunctions.cpp b/src/ifcgeom/IfcGeomFunctions.cpp index 1dfbb1e45c..093bc4f094 100644 --- a/src/ifcgeom/IfcGeomFunctions.cpp +++ b/src/ifcgeom/IfcGeomFunctions.cpp @@ -435,14 +435,21 @@ void IfcGeom::SetValue(GeomValue var, double value) { switch (var) { case GV_DEFLECTION_TOLERANCE: deflection_tolerance = value; + break; case GV_WIRE_CREATION_TOLERANCE: wire_creation_tolerance = value; + break; case GV_MINIMAL_FACE_AREA: minimal_face_area = value; + break; case GV_POINT_EQUALITY_TOLERANCE: point_equality_tolerance = value; + break; case GV_MAX_FACES_TO_SEW: max_faces_to_sew = value; + break; + default: + assert(!"never reach here"); } }