mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-25 01:30:32 +05:00
Tests under Windows in Debug mode.
This commit is contained in:
parent
5d57f4e257
commit
e6fe1c8354
@ -4458,7 +4458,7 @@ namespace
|
|||||||
|
|
||||||
// connect pn2 (probably new, at _eIntNodes) with a split
|
// connect pn2 (probably new, at _eIntNodes) with a split
|
||||||
|
|
||||||
int i, iConn;
|
int i, iConn = 0;
|
||||||
size_t nbCommon;
|
size_t nbCommon;
|
||||||
TGeomID commonFaces[20];
|
TGeomID commonFaces[20];
|
||||||
_Node* nPrev = nullptr;
|
_Node* nPrev = nullptr;
|
||||||
|
@ -637,7 +637,11 @@ bool StdMeshers_MEFISTO_2D::LoadPoints(TWireVector & wires,
|
|||||||
m++;
|
m++;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mFirst = mOnVertex.front(), mLast = m - 1;
|
int mFirst = 0, mLast = 0;
|
||||||
|
if (!mOnVertex.empty()) {
|
||||||
|
mFirst = mOnVertex.front();
|
||||||
|
mLast = m - 1;
|
||||||
|
}
|
||||||
list< int >::iterator mIt = mOnVertex.begin();
|
list< int >::iterator mIt = mOnVertex.begin();
|
||||||
for ( ; mIt != mOnVertex.end(); ++mIt)
|
for ( ; mIt != mOnVertex.end(); ++mIt)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user