Salome HOME
remove compilation warnings
authoreap <eap@opencascade.com>
Fri, 20 Nov 2009 08:36:23 +0000 (08:36 +0000)
committereap <eap@opencascade.com>
Fri, 20 Nov 2009 08:36:23 +0000 (08:36 +0000)
* converting to 'int' from 'double
* unused variable 'meshDS'

src/StdMeshers/StdMeshers_Regular_1D.cxx

index 331d29aea2990d95f9aa63e63e2cdf872a8dcdb9..c3e86a98d8607b1622cb8cf38d71790c07e38aa5 100644 (file)
@@ -758,7 +758,7 @@ bool StdMeshers_Regular_1D::computeInternalParameters(SMESH_Mesh &     theMesh,
     double an = _value[ END_LENGTH_IND ];
 
     double  q = ( an - a1 ) / ( 2 *theLength/( a1 + an ) - 1 );
-    int n = fabs(q) > numeric_limits<double>::min() ? int( 1 + ( an - a1 ) / q ) : 1+theLength/a1;
+    int n = int(fabs(q) > numeric_limits<double>::min() ? ( 1+( an-a1 )/q ) : ( 1+theLength/a1 ));
 
     double U1 = theReverse ? l : f;
     double Un = theReverse ? f : l;
@@ -1033,7 +1033,7 @@ bool StdMeshers_Regular_1D::Evaluate(SMESH_Mesh & theMesh,
   if ( _hypType == NONE )
     return false;
 
-  SMESHDS_Mesh * meshDS = theMesh.GetMeshDS();
+  //SMESHDS_Mesh * meshDS = theMesh.GetMeshDS();
 
   const TopoDS_Edge & EE = TopoDS::Edge(theShape);
   TopoDS_Edge E = TopoDS::Edge(EE.Oriented(TopAbs_FORWARD));