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

Fix warning on vc14

This commit is contained in:
apn 2016-11-24 12:00:58 +03:00
parent 7dd37838f7
commit d96fd48ee5

View File

@ -3372,8 +3372,8 @@ void IntersectFaces(const TopTools_IndexedDataMapOfShapeListOfShape& theFToRebui
// check also its vertices
TopoDS_Iterator aItE(aE);
for (; aItE.More(); aItE.Next()) {
const TopoDS_Shape& aV = aItE.Value();
if (aDMSF.Find(aV).Extent() > 2) {
const TopoDS_Shape& aVE = aItE.Value();
if (aDMSF.Find(aVE).Extent() > 2) {
break;
}
}