bos #20256 [CEA 18523] Porting SMESH to int 64 bits

Fix import huge mesh from MED
This commit is contained in:
eap 2021-04-29 13:51:32 +03:00
parent 4ba3c7cda8
commit 78e2e09d5c

View File

@ -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);