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 committed by vsr
parent a8e83192f6
commit 26446f72ec

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