From: mpv Date: Fri, 26 Oct 2018 17:08:15 +0000 (+0300) Subject: Split too long line X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=291c73810a1f3299e8e2cff04aebfb4fc08ac56b;p=modules%2Fshaper.git Split too long line --- diff --git a/src/Selector/Selector_Selector.cpp b/src/Selector/Selector_Selector.cpp index 2b651c030..409671b5c 100644 --- a/src/Selector/Selector_Selector.cpp +++ b/src/Selector/Selector_Selector.cpp @@ -298,7 +298,8 @@ bool Selector_Selector::select(const TopoDS_Shape theContext, const TopoDS_Shape TopTools_MapOfShape anIntersectors; // shapes of aSelectionType that contain theValue TopoDS_ListOfShape anIntList; // same as anIntersectors for(TopExp_Explorer aSelExp(theContext, aSelectionType); aSelExp.More(); aSelExp.Next()) { - if (aSelectionType == TopAbs_EDGE && BRep_Tool::Degenerated(TopoDS::Edge(aSelExp.Current()))) + if (aSelectionType == TopAbs_EDGE && + BRep_Tool::Degenerated(TopoDS::Edge(aSelExp.Current()))) continue; TopExp_Explorer aSubExp(aSelExp.Current(), theValue.ShapeType()); for(; aSubExp.More(); aSubExp.Next()) {