From 9c6914c3cc7642b508e78a3515415e38cfc68367 Mon Sep 17 00:00:00 2001 From: dpasukhi Date: Mon, 9 Sep 2024 19:14:00 +0000 Subject: [PATCH] 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. --- src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx b/src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx index bbec44f579..d066436fbf 100644 --- a/src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx +++ b/src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx @@ -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();