mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 10:08:35 +05:00
Fix of IPAL22186: don't dump the contents of list of vertexes if it is empty.
This commit is contained in:
parent
3012e7ea8e
commit
690621885d
@ -543,9 +543,10 @@ Handle(GEOM_Object) GEOMImpl_ILocalOperations::MakeFillet1D
|
||||
<< ", " << theR << ", [";
|
||||
|
||||
it = theVertexes.begin();
|
||||
pd << (*it++);
|
||||
while (it != theVertexes.end()) {
|
||||
pd << ", " << (*it++);
|
||||
if (it != theVertexes.end()) {
|
||||
pd << (*it++);
|
||||
while (it != theVertexes.end())
|
||||
pd << ", " << (*it++);
|
||||
}
|
||||
pd << "])";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user