mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Coding - Resolving C6319 warning
Use of the comma-operator in a tested expression causes the left argument to be ignored when it has no side-effects.
This commit is contained in:
parent
4ab54d60ef
commit
9c6914c3cc
@ -312,7 +312,7 @@ void TopOpeBRep_FacesFiller::ProcessSectionEdges()
|
||||
|
||||
// ajout des aretes de section dans la DS de shape,connaissant leur rank
|
||||
for (itLES.Initialize(LES),itLOI.Initialize(LOI);
|
||||
itLES.More(),itLOI.More();
|
||||
itLES.More() && itLOI.More();
|
||||
itLES.Next(),itLOI.Next()) {
|
||||
const TopoDS_Shape& E1 = itLES.Value();
|
||||
Standard_Integer rE1 = itLOI.Value();
|
||||
|
Loading…
x
Reference in New Issue
Block a user