1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0025075: BRepMesh - eliminate new x86_64 compiler warnings

BRepMesh - fix compilation without TBB support

Code style
This commit is contained in:
kgv 2014-07-17 13:34:05 +04:00 committed by bugmaster
parent c308fbd7c7
commit f29db51421
3 changed files with 19 additions and 19 deletions

View File

@ -194,7 +194,7 @@ void BRepMesh_WireChecker::ReCompute(BRepMeshCol::HClassifier& theClassifier)
if (!collectDiscretizedWires(aDWires))
return;
const Standard_Integer aNbWires = aDWires.size();
const Standard_Integer aNbWires = (Standard_Integer)aDWires.size();
BRepMeshCol::Array1OfSegmentsTree aWiresBiPoints(aNbWires);
fillSegmentsTree(aDWires, aWiresBiPoints);
@ -362,8 +362,8 @@ void BRepMesh_WireChecker::fillSegmentsTree(
const SeqOfDWires& theDWires,
BRepMeshCol::Array1OfSegmentsTree& theWiresSegmentsTree)
{
const Standard_Integer aNbWires = theDWires.size();
for (Standard_Integer aWireIt = 0; aWireIt < aNbWires; ++aWireIt)
const size_t aNbWires = theDWires.size();
for (size_t aWireIt = 0; aWireIt < aNbWires; ++aWireIt)
{
const SeqOfPnt2d& aWire = theDWires[aWireIt];
const Standard_Integer aWireLen = aWire.Size();

View File

@ -29,10 +29,10 @@ BRepMesh_WireInterferenceChecker::BRepMesh_WireInterferenceChecker(
const std::vector<BRepMeshCol::SegmentsTree>& theWires,
BRepMesh_Status* theStatus,
Standard_Mutex* theMutex)
: myWires(&theWires.front()),
myWiresNb(theWires.size()),
myStatus(theStatus),
myMutex(theMutex)
: myWires (&theWires.front()),
myWiresNb ((Standard_Integer)theWires.size()),
myStatus (theStatus),
myMutex (theMutex)
{
}
@ -52,11 +52,11 @@ void BRepMesh_WireInterferenceChecker::operator ()(
//purpose :
//=======================================================================
BRepMesh_WireInterferenceChecker::BRepMesh_WireInterferenceChecker(
const std::vector<BRepMesh_WireChecker::SegmentsTree>& theWires,
BRepMesh_Status* theStatus)
: myWires(&theWires.front()),
myWiresNb(theWires.size()),
myStatus(theStatus)
const std::vector<BRepMeshCol::SegmentsTree>& theWires,
BRepMesh_Status* theStatus)
: myWires (&theWires.front()),
myWiresNb ((Standard_Integer)theWires.size()),
myStatus (theStatus)
{
}
#endif
@ -74,7 +74,7 @@ void BRepMesh_WireInterferenceChecker::operator ()(
const BRepMeshCol::SegmentsTree& aWireSegTree1 = myWires[theWireId];
const BRepMeshCol::Segment* aWireSegments1 = &aWireSegTree1.first->front();
const BRepMeshCol::HBndBox2dTree& aWireBoxTree1 = aWireSegTree1.second;
const Standard_Integer aWireLen1 = aWireSegTree1.first->size();
const Standard_Integer aWireLen1 = (Standard_Integer)aWireSegTree1.first->size();
for (Standard_Integer aWireIt = theWireId; aWireIt < myWiresNb; ++aWireIt)
{
@ -91,7 +91,7 @@ void BRepMesh_WireInterferenceChecker::operator ()(
const BRepMeshCol::Segment* aWireSegments2 = &aWireSegTree2.first->front();
const BRepMeshCol::HBndBox2dTree& aWireBoxTree2 = aWireSegTree2.second;
BRepMesh_WireChecker::BndBox2dTreeSelector aSelector(aWireSegTree2.first->size());
BRepMesh_WireChecker::BndBox2dTreeSelector aSelector ((Standard_Integer)aWireSegTree2.first->size());
for (Standard_Integer aSegmentId1 = 0; aSegmentId1 < aWireLen1; ++aSegmentId1)
{
#ifdef HAVE_TBB

View File

@ -61,8 +61,8 @@ public:
//! \param theWires wires that should be checked.
//! \param theStatus shared flag to set status of the check.
BRepMesh_WireInterferenceChecker(
const std::vector<BRepMesh_WireChecker::SegmentsTree>& theWires,
BRepMesh_Status* theStatus);
const std::vector<BRepMeshCol::SegmentsTree>& theWires,
BRepMesh_Status* theStatus);
#endif
//! Checker's body.