mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 09:20:34 +05:00
bos #20256 [CEA 18523] Porting SMESH to int 64 bits
Fix import huge mesh from MED
This commit is contained in:
parent
4ba3c7cda8
commit
78e2e09d5c
@ -503,7 +503,7 @@ Driver_Mesh::Status DriverMED_R_SMESHDS_Mesh::Perform()
|
|||||||
default:;
|
default:;
|
||||||
}
|
}
|
||||||
vector<TInt> aNodeIds(aNbNodes);
|
vector<TInt> aNodeIds(aNbNodes);
|
||||||
for ( int iElem = 0; iElem < aNbElems; iElem++ )
|
for ( TInt iElem = 0; iElem < aNbElems; iElem++ )
|
||||||
{
|
{
|
||||||
bool anIsValidConnect = false;
|
bool anIsValidConnect = false;
|
||||||
TCConnSlice aConnSlice = aCellInfo->GetConnSlice(iElem);
|
TCConnSlice aConnSlice = aCellInfo->GetConnSlice(iElem);
|
||||||
|
Loading…
Reference in New Issue
Block a user