X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FMEDWrapper%2FMED_Structures.cxx;h=c04113bc43a3a4d7e3a16e80243b606d945cb532;hp=f5caca0ee1d197a83dce8fbcc2f1d5b86ad8f8a0;hb=88ff35ddd4a4442397bc5f6ba893aaf9c51b1856;hpb=b7a7d49664daa32e1befb558280e13ed0bde37c9 diff --git a/src/MEDWrapper/MED_Structures.cxx b/src/MEDWrapper/MED_Structures.cxx index f5caca0ee..c04113bc4 100644 --- a/src/MEDWrapper/MED_Structures.cxx +++ b/src/MEDWrapper/MED_Structures.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -141,7 +141,8 @@ namespace MED TElemInfo ::SetElemNum(TInt theId, TInt theVal) { - (*myElemNum)[theId] = theVal; + if ( IsElemNum() ) + (*myElemNum)[theId] = theVal; } //--------------------------------------------------------------- @@ -352,10 +353,10 @@ namespace MED TGaussInfo::TLess ::operator()(const TGaussInfo& theLeft, const TGaussInfo& theRight) const { - if(!&theLeft) + if(!&theLeft) // address of reference can be assumed always non-null by compiler - OK return true; - if(!&theRight) + if(!&theRight) //address of reference can be assumed always non-null by compiler - OK return false; if(theLeft.myGeom != theRight.myGeom) @@ -644,13 +645,14 @@ namespace MED switch(aDim){ case 3: aCoord[2] = myCoord[aDim*theId+2]; + // fall through case 2: aCoord[1] = myCoord[aDim*theId+1]; - case 1:{ + // fall through + case 1: aCoord[0] = myCoord[aDim*theId]; break; } - } } else { TFloatVector aVecX = this->GetIndexes(0);