Fix some compilation warnings

This commit is contained in:
eap 2017-01-25 14:30:21 +03:00
parent 45a00be884
commit 04056cdd32
11 changed files with 95 additions and 90 deletions

View File

@ -124,7 +124,7 @@ void VolumeSection::CenterOfGravity()
Standard_Real VolumeSection::CalculateVolume(Standard_Real Elevation) Standard_Real VolumeSection::CalculateVolume(Standard_Real Elevation)
{ {
Standard_Integer i,noeud[3],flag[3]; Standard_Integer i,noeud[3],flag[3];
Standard_Integer nbNodes; //Standard_Integer nbNodes;
TopExp_Explorer ex; TopExp_Explorer ex;
TopLoc_Location L; TopLoc_Location L;
Standard_Real z[3]; Standard_Real z[3];
@ -144,7 +144,7 @@ Standard_Real VolumeSection::CalculateVolume(Standard_Real Elevation)
MESSAGE("Error, null layer" ) MESSAGE("Error, null layer" )
const Poly_Array1OfTriangle& triangles = Tr->Triangles(); const Poly_Array1OfTriangle& triangles = Tr->Triangles();
Standard_Integer nbTriangles = Tr->NbTriangles(); Standard_Integer nbTriangles = Tr->NbTriangles();
nbNodes = Tr->NbNodes(); //nbNodes = Tr->NbNodes();
const TColgp_Array1OfPnt& Nodes = Tr->Nodes(); const TColgp_Array1OfPnt& Nodes = Tr->Nodes();
// Calcul des volumes de chaque triangle, de chaque face // Calcul des volumes de chaque triangle, de chaque face

View File

@ -258,8 +258,8 @@ TopoDS_Shape GEOM_Client::GetShape( GEOM::GEOM_Gen_ptr geom, GEOM::GEOM_Object_p
BRep_Builder B; BRep_Builder B;
TopoDS_Compound aCompound; TopoDS_Compound aCompound;
B.MakeCompound(aCompound); B.MakeCompound(aCompound);
for (int i = 0; i < list->length(); i++) { for (size_t i = 0; i < list->length(); i++) {
if (0 < list[i] && list[i] <= _mySubShapes[mainIOR].size()) { if (0 < list[i] && list[i] <= (CORBA::Long)_mySubShapes[mainIOR].size()) {
TopoDS_Shape aSubShape = _mySubShapes[mainIOR][list[i]-1]; TopoDS_Shape aSubShape = _mySubShapes[mainIOR][list[i]-1];
B.Add(aCompound, aSubShape); B.Add(aCompound, aSubShape);
} }

View File

@ -262,7 +262,7 @@ namespace
levelsListStr.push_back( substr ); levelsListStr.push_back( substr );
} }
GEOMUtils::LevelsList levelsListData; GEOMUtils::LevelsList levelsListData;
for( int level = 0; level < levelsListStr.size(); level++ ) { for( size_t level = 0; level < levelsListStr.size(); level++ ) {
std::vector<std::string> namesListStr; std::vector<std::string> namesListStr;
std::stringstream ss1( levelsListStr[level] ); std::stringstream ss1( levelsListStr[level] );
while ( std::getline( ss1, substr, ',' ) ) { while ( std::getline( ss1, substr, ',' ) ) {
@ -270,7 +270,7 @@ namespace
namesListStr.push_back( substr ); namesListStr.push_back( substr );
} }
GEOMUtils::LevelInfo levelInfoData; GEOMUtils::LevelInfo levelInfoData;
for( int node = 0; node < namesListStr.size(); node++ ) { for( size_t node = 0; node < namesListStr.size(); node++ ) {
std::vector<std::string> linksListStr; std::vector<std::string> linksListStr;
std::stringstream ss2( namesListStr[node] ); std::stringstream ss2( namesListStr[node] );
while ( std::getline( ss2, substr, '_' ) ) { while ( std::getline( ss2, substr, '_' ) ) {
@ -280,7 +280,7 @@ namespace
std::string nodeItem = linksListStr[0]; std::string nodeItem = linksListStr[0];
if( !nodeItem.empty() ) { if( !nodeItem.empty() ) {
GEOMUtils::NodeLinks linksListData; GEOMUtils::NodeLinks linksListData;
for( int link = 1; link < linksListStr.size(); link++ ) { for( size_t link = 1; link < linksListStr.size(); link++ ) {
std::string linkItem = linksListStr[link]; std::string linkItem = linksListStr[link];
linksListData.push_back( linkItem ); linksListData.push_back( linkItem );
}// Links }// Links
@ -1083,7 +1083,7 @@ void GEOMUtils::ConvertStringToTree( const std::string& dependencyStr,
cursor = objectIndex; cursor = objectIndex;
std::size_t upwardIndexBegin = dependencyStr.find("{",cursor) + 1; std::size_t upwardIndexBegin = dependencyStr.find("{",cursor) + 1;
std::size_t upwardIndexFinish = dependencyStr.find("}",upwardIndexBegin); //std::size_t upwardIndexFinish = dependencyStr.find("}",upwardIndexBegin);
LevelsList upwardList = parseWard( dependencyStr, cursor ); LevelsList upwardList = parseWard( dependencyStr, cursor );
LevelsList downwardList = parseWard( dependencyStr, cursor ); LevelsList downwardList = parseWard( dependencyStr, cursor );

View File

@ -137,7 +137,7 @@ Distribution ComputeDistribution( std::list<TopoDS_Shape> shapes,
} }
} }
aDistr.push_back( localRange ); aDistr.push_back( localRange );
for( int j=0; j < indicesToErase.size(); j++ ) for( size_t j=0; j < indicesToErase.size(); j++ )
measures.erase( indicesToErase[j] ); measures.erase( indicesToErase[j] );
} }

View File

@ -137,6 +137,7 @@ namespace
return xmlPaths; return xmlPaths;
} }
#ifdef MYDEBUG
void dumpinfo(const GEOMUtils::PluginInfo& info) void dumpinfo(const GEOMUtils::PluginInfo& info)
{ {
printf("DUMPING PLUGIN INFO\n"); printf("DUMPING PLUGIN INFO\n");
@ -160,6 +161,7 @@ namespace
printf("-----\n"); printf("-----\n");
} }
} }
#endif
} }
namespace GEOMUtils namespace GEOMUtils

View File

@ -3919,8 +3919,8 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
# publication is switched on, default value is used for result name. # publication is switched on, default value is used for result name.
# #
# @return New GEOM.GEOM_Object, containing the created pipe if # @return New GEOM.GEOM_Object, containing the created pipe if
# \a IsGenerateGroups is not set. Otherwise it returns new # \a IsGenerateGroups is not set. Otherwise it returns a
# GEOM.ListOfGO. Its first element is the created pipe, the # list of GEOM.GEOM_Object. Its first element is the created pipe, the
# remaining ones are created groups. # remaining ones are created groups.
# #
# @ref tui_creation_pipe "Example" # @ref tui_creation_pipe "Example"
@ -3959,8 +3959,8 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
Returns: Returns:
New GEOM.GEOM_Object, containing the created pipe if New GEOM.GEOM_Object, containing the created pipe if
IsGenerateGroups is not set. Otherwise it returns new IsGenerateGroups is not set. Otherwise it returns a
GEOM.ListOfGO. Its first element is the created pipe, the list of GEOM.GEOM_Object. Its first element is the created pipe, the
remaining ones are created groups. remaining ones are created groups.
""" """
# Example: see GEOM_TestAll.py # Example: see GEOM_TestAll.py

View File

@ -707,10 +707,14 @@ Standard_Boolean GEOM_AISShape::computeMassCenter( const TopoDS_Shape& theShape,
C += ( uv1.XY() + uv2.XY() + uv3.XY() ) / 3. * a; C += ( uv1.XY() + uv2.XY() + uv3.XY() ) / 3. * a;
A += a; A += a;
} }
if ( A > std::numeric_limits<double>::min() )
{
C /= A; C /= A;
theCenter = surface.Value( C.X(), C.Y() ); theCenter = surface.Value( C.X(), C.Y() );
aNbPoints = 1;
} }
else }
if ( aNbPoints == 0 )
{ {
theCenter = surface.Value( 0.5 * ( surface.FirstUParameter() + surface.LastUParameter() ), theCenter = surface.Value( 0.5 * ( surface.FirstUParameter() + surface.LastUParameter() ),
0.5 * ( surface.FirstVParameter() + surface.LastVParameter() )); 0.5 * ( surface.FirstVParameter() + surface.LastVParameter() ));

View File

@ -369,7 +369,7 @@ private:
\brief Constructor \brief Constructor
\internal \internal
*/ */
Sketcher_Profile::Functor::Functor() : myError( 0 ), myNumberOfCommand( 0 ), myOk( true ) Sketcher_Profile::Functor::Functor() : myNumberOfCommand( 0 ), myError( 0 ), myOk( true )
{ {
} }

View File

@ -287,11 +287,11 @@ Handle(Geom_Surface) ShHealOper_FillHoles::buildSurface(const TopoDS_Wire& theWi
TopoDS_Edge ae = TopoDS::Edge(aIter.Value()); TopoDS_Edge ae = TopoDS::Edge(aIter.Value());
BRepAdaptor_Curve adC(ae); BRepAdaptor_Curve adC(ae);
Handle(BRepAdaptor_HCurve) aHAD= new BRepAdaptor_HCurve(adC); Handle(BRepAdaptor_HCurve) aHAD= new BRepAdaptor_HCurve(adC);
Handle(BRepFill_CurveConstraint) aConst = // Handle(BRepFill_CurveConstraint) aConst =
new BRepFill_CurveConstraint (Handle(Adaptor3d_HCurve)::DownCast(aHAD), (Standard_Integer) GeomAbs_C0, myNbPtsOnCur, myTol3d); // new BRepFill_CurveConstraint (Handle(Adaptor3d_HCurve)::DownCast(aHAD), (Standard_Integer) GeomAbs_C0, myNbPtsOnCur, myTol3d);
//Handle(GeomPlate_CurveConstraint) aConst = Handle(GeomPlate_CurveConstraint) aConst =
// new GeomPlate_CurveConstraint(aHAD, (Standard_Integer) GeomAbs_C0, myNbPtsOnCur, myTol3d); new GeomPlate_CurveConstraint(aHAD, (Standard_Integer) GeomAbs_C0, myNbPtsOnCur, myTol3d);
aBuilder.Add (Handle(GeomPlate_CurveConstraint)::DownCast(aConst)); aBuilder.Add (aConst);
} }
aBuilder.Perform(); aBuilder.Perform();
if(!aBuilder.IsDone()) if(!aBuilder.IsDone())

View File

@ -35,11 +35,10 @@ using namespace XAO;
Field::Field(const XAO::Dimension& dimension, Field::Field(const XAO::Dimension& dimension,
const int& nbElements, const int& nbComponents, const std::string& name) const int& nbElements, const int& nbComponents, const std::string& name)
: m_name(name), m_dimension(dimension), m_nbElements(nbElements), m_nbComponents(nbComponents) : m_name(name), m_dimension(dimension),
m_nbComponents(nbComponents), m_components(nbComponents, ""),
m_nbElements(nbElements)
{ {
m_components.reserve(nbComponents);
for (int i = 0; i < nbComponents; ++i)
m_components.push_back("");
} }
Field::~Field() Field::~Field()
@ -83,7 +82,7 @@ throw (XAO_Exception)
{ {
for (unsigned int i = 0; i < names.size(); ++i) for (unsigned int i = 0; i < names.size(); ++i)
{ {
if (i < m_nbComponents) if ((int)i < m_nbComponents)
m_components[i] = names[i]; m_components[i] = names[i];
} }
} }
@ -130,7 +129,7 @@ throw (XAO_Exception)
void Field::checkStepIndex(const int& step) void Field::checkStepIndex(const int& step)
throw (XAO_Exception) throw (XAO_Exception)
{ {
if (step < m_steps.size() && step >= 0) if (step < (int)m_steps.size() && step >= 0)
return; return;
throw XAO_Exception(MsgBuilder() << "Step index is out of range [0, " throw XAO_Exception(MsgBuilder() << "Step index is out of range [0, "

View File

@ -43,7 +43,7 @@ Group::~Group()
void Group::checkIndex(const int& element) void Group::checkIndex(const int& element)
throw (XAO_Exception) throw (XAO_Exception)
{ {
if (element < m_elements.size() && element >= 0) if (element < (int)m_elements.size() && element >= 0)
return; return;
throw XAO_Exception(MsgBuilder() << "Index of element is out of range [0, " throw XAO_Exception(MsgBuilder() << "Index of element is out of range [0, "