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 << ", [";
|
<< ", " << theR << ", [";
|
||||||
|
|
||||||
it = theVertexes.begin();
|
it = theVertexes.begin();
|
||||||
pd << (*it++);
|
if (it != theVertexes.end()) {
|
||||||
while (it != theVertexes.end()) {
|
pd << (*it++);
|
||||||
pd << ", " << (*it++);
|
while (it != theVertexes.end())
|
||||||
|
pd << ", " << (*it++);
|
||||||
}
|
}
|
||||||
pd << "])";
|
pd << "])";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user