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

0028096: VC14 compiler warnings of 7.1.0.beta

Warnings are eliminated
// minor corrections in headers
This commit is contained in:
abv 2016-11-17 15:14:19 +03:00 committed by apn
parent 197cddcfc9
commit 45d0af05b9
4 changed files with 20 additions and 23 deletions

View File

@ -299,6 +299,6 @@ private:
FS_VARStatuses myStatusList; FS_VARStatuses myStatusList;
}; };
#endif // _BRepBuilderAPI_FastSewing_HeaderFile
DEFINE_STANDARD_HANDLE(BRepBuilderAPI_FastSewing, Standard_Transient) DEFINE_STANDARD_HANDLE(BRepBuilderAPI_FastSewing, Standard_Transient)
#endif // _BRepBuilderAPI_FastSewing_HeaderFile

View File

@ -777,8 +777,8 @@ void BuildSplitsOfFaces(const TopTools_ListOfShape& theLF,
// //
// additionally check if newly created faces are not the same // additionally check if newly created faces are not the same
Standard_Boolean bAllInv = Standard_True; Standard_Boolean bAllInv = Standard_True;
TopTools_ListIteratorOfListOfShape aItLFIm(aLFImages1); for (TopTools_ListIteratorOfListOfShape aItLFIm(aLFImages1); aItLFIm.More();)
for (; aItLFIm.More();) { {
const TopoDS_Shape& aFIm = aItLFIm.Value(); const TopoDS_Shape& aFIm = aItLFIm.Value();
TopExp_Explorer aExpE(aFIm, TopAbs_EDGE); TopExp_Explorer aExpE(aFIm, TopAbs_EDGE);
for (; aExpE.More(); aExpE.Next()) { for (; aExpE.More(); aExpE.Next()) {
@ -1677,15 +1677,15 @@ void FindInvalidFaces(TopTools_ListOfShape& theLFImages,
// //
// neutral edges // neutral edges
TopTools_MapOfShape aMEN; TopTools_MapOfShape aMEN;
TopTools_ListIteratorOfListOfShape aItLE(theLENeutral); for (TopTools_ListIteratorOfListOfShape aItLE(theLENeutral); aItLE.More(); aItLE.Next())
for (; aItLE.More(); aItLE.Next()) { {
aMEN.Add(aItLE.Value()); aMEN.Add(aItLE.Value());
} }
// //
// valid inverted edges // valid inverted edges
TopTools_MapOfShape aMEValInverted; TopTools_MapOfShape aMEValInverted;
aItLE.Initialize(theLEValInverted); for (TopTools_ListIteratorOfListOfShape aItLE(theLEValInverted); aItLE.More(); aItLE.Next())
for (; aItLE.More(); aItLE.Next()) { {
aMEValInverted.Add(aItLE.Value()); aMEValInverted.Add(aItLE.Value());
} }
// //
@ -2511,8 +2511,8 @@ void RemoveInsideFaces(TopTools_IndexedDataMapOfShapeListOfShape& theFImages,
// //
Standard_Boolean bAllInv(Standard_True), bAllRemoved(Standard_True); Standard_Boolean bAllInv(Standard_True), bAllRemoved(Standard_True);
TopExp_Explorer aExpF(aSol, TopAbs_FACE); for (TopExp_Explorer aExpF(aSol, TopAbs_FACE); aExpF.More(); aExpF.Next())
for (; aExpF.More(); aExpF.Next()) { {
const TopoDS_Shape& aFS = aExpF.Current(); const TopoDS_Shape& aFS = aExpF.Current();
// //
if (aFS.Orientation() == TopAbs_INTERNAL) { if (aFS.Orientation() == TopAbs_INTERNAL) {
@ -2561,8 +2561,8 @@ void ShapesConnections(const TopTools_IndexedDataMapOfShapeListOfShape& theInvFa
{ {
// update invalid edges with images and keep connection to original edge // update invalid edges with images and keep connection to original edge
TopTools_DataMapOfShapeListOfShape aDMEOr; TopTools_DataMapOfShapeListOfShape aDMEOr;
Standard_Integer i, aNb = theInvEdges.Extent(); Standard_Integer aNb = theInvEdges.Extent();
for (i = 1; i <= aNb; ++i) { for (Standard_Integer i = 1; i <= aNb; ++i) {
const TopoDS_Shape& aEInv = theInvEdges(i); const TopoDS_Shape& aEInv = theInvEdges(i);
const TopTools_ListOfShape& aLEIm = theBuilder.Modified(aEInv); const TopTools_ListOfShape& aLEIm = theBuilder.Modified(aEInv);
if (aLEIm.IsEmpty()) { if (aLEIm.IsEmpty()) {
@ -3269,7 +3269,6 @@ void IntersectFaces(const TopTools_IndexedDataMapOfShapeListOfShape& theFToRebui
// //
Standard_Integer i, j, k, aNbInv; Standard_Integer i, j, k, aNbInv;
TopTools_ListIteratorOfListOfShape aItLF, aItLE; TopTools_ListIteratorOfListOfShape aItLF, aItLE;
TopExp_Explorer aExp;
// //
// get vertices from invalid edges // get vertices from invalid edges
TopTools_MapOfShape aMVInv, aMVInvAll; TopTools_MapOfShape aMVInv, aMVInvAll;
@ -3277,8 +3276,7 @@ void IntersectFaces(const TopTools_IndexedDataMapOfShapeListOfShape& theFToRebui
for (i = 1; i <= aNbInv; ++i) { for (i = 1; i <= aNbInv; ++i) {
const TopoDS_Shape& aEInv = theInvEdges(i); const TopoDS_Shape& aEInv = theInvEdges(i);
Standard_Boolean bValid = theValidEdges.Contains(aEInv); Standard_Boolean bValid = theValidEdges.Contains(aEInv);
aExp.Init(aEInv, TopAbs_VERTEX); for (TopExp_Explorer aExp (aEInv, TopAbs_VERTEX); aExp.More(); aExp.Next()) {
for (; aExp.More(); aExp.Next()) {
const TopoDS_Shape& aV = aExp.Current(); const TopoDS_Shape& aV = aExp.Current();
aMVInvAll.Add(aV); aMVInvAll.Add(aV);
if (!bValid) { if (!bValid) {
@ -3324,8 +3322,8 @@ void IntersectFaces(const TopTools_IndexedDataMapOfShapeListOfShape& theFToRebui
aItLF.Initialize(aLFInv); aItLF.Initialize(aLFInv);
for (; aItLF.More(); aItLF.Next()) { for (; aItLF.More(); aItLF.Next()) {
const TopoDS_Shape& aFInv = aItLF.Value(); const TopoDS_Shape& aFInv = aItLF.Value();
aExp.Init(aFInv, TopAbs_EDGE); for (TopExp_Explorer aExp(aFInv, TopAbs_EDGE); aExp.More(); aExp.Next())
for (; aExp.More(); aExp.Next()) { {
const TopoDS_Shape& aE = aExp.Current(); const TopoDS_Shape& aE = aExp.Current();
if (!theInvEdges.Contains(aE) && aMFence.Add(aE)) { if (!theInvEdges.Contains(aE) && aMFence.Add(aE)) {
TopExp::MapShapesAndAncestors(aE, TopAbs_VERTEX, TopAbs_EDGE, aDMVEVal); TopExp::MapShapesAndAncestors(aE, TopAbs_VERTEX, TopAbs_EDGE, aDMVEVal);
@ -4957,8 +4955,8 @@ void GetInvalidEdgesByBounds(const TopoDS_Shape& theSplits,
TopExp::MapShapes(aSecR, aMSSec); TopExp::MapShapes(aSecR, aMSSec);
// //
const BOPCol_DataMapOfShapeListOfShape& anIm = aSec.Images(); const BOPCol_DataMapOfShapeListOfShape& anIm = aSec.Images();
TopExp_Explorer aExp(theSplits, TopAbs_EDGE); for (TopExp_Explorer aExp(theSplits, TopAbs_EDGE); aExp.More(); aExp.Next())
for (; aExp.More(); aExp.Next()) { {
const TopoDS_Shape& aE = aExp.Current(); const TopoDS_Shape& aE = aExp.Current();
if (aSec.IsDeleted(aE)) { if (aSec.IsDeleted(aE)) {
// no common blocks for this edge // no common blocks for this edge

View File

@ -2303,8 +2303,8 @@ SeekPointOnBoundary(const Handle(Adaptor3d_HSurface)& theASurf1,
return isOK; return isOK;
} }
const gp_Pnt aP1 = theASurf1->Value(aPnt(1), aPnt(2)), gp_Pnt aP1 = theASurf1->Value(aPnt(1), aPnt(2));
aP2 = theASurf2->Value(aPnt(3), aPnt(4)); gp_Pnt aP2 = theASurf2->Value(aPnt(3), aPnt(4));
const gp_Pnt aPInt(0.5*(aP1.XYZ() + aP2.XYZ())); const gp_Pnt aPInt(0.5*(aP1.XYZ() + aP2.XYZ()));
const Standard_Real aSQDist = aPInt.SquareDistance(aP1); const Standard_Real aSQDist = aPInt.SquareDistance(aP1);
@ -2348,7 +2348,6 @@ SeekPointOnBoundary(const Handle(Adaptor3d_HSurface)& theASurf1,
{ {
const Standard_Integer aNbPnts = line->NbPoints(); const Standard_Integer aNbPnts = line->NbPoints();
gp_Pnt aP1, aP2;
Standard_Integer aPInd = 1; Standard_Integer aPInd = 1;
for (; aPInd <= aNbPnts; aPInd++) for (; aPInd <= aNbPnts; aPInd++)
{ {

View File

@ -64,7 +64,7 @@ public:
Standard_EXPORT virtual Standard_Boolean Matches (SelectBasics_SelectingVolumeManager& theMgr, Standard_EXPORT virtual Standard_Boolean Matches (SelectBasics_SelectingVolumeManager& theMgr,
SelectBasics_PickResult& thePickResult) Standard_OVERRIDE; SelectBasics_PickResult& thePickResult) Standard_OVERRIDE;
Bnd_Box Box() const; Standard_EXPORT Bnd_Box Box() const;
//! Returns center of the box. If location //! Returns center of the box. If location
//! transformation is set, it will be applied //! transformation is set, it will be applied