]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
0022875: fixed compilation warnings
authorimn <imn@opencascade.com>
Fri, 29 May 2015 13:22:21 +0000 (16:22 +0300)
committerimn <imn@opencascade.com>
Fri, 29 May 2015 13:22:21 +0000 (16:22 +0300)
src/MEDCoupling/MEDCouplingUMesh.cxx
src/MEDPartitioner/MEDPARTITIONER_MeshCollection.cxx
src/MEDPartitioner/MEDPARTITIONER_MeshCollectionDriver.cxx

index e9c46e8a0267602840bd8ed8996196a4fc143a8f..557b55b5105de60a71a0a2c01c8d9bae3bb16eee 100644 (file)
@@ -8669,7 +8669,6 @@ MEDCouplingSkyLineArray *MEDCouplingUMesh::generateGraph() const
   int meshDim = this->getMeshDimension();
   ParaMEDMEM::DataArrayInt* indexr=ParaMEDMEM::DataArrayInt::New();
   ParaMEDMEM::DataArrayInt* revConn=ParaMEDMEM::DataArrayInt::New();
-  int nbNodes=getNumberOfNodes();
   this->getReverseNodalConnectivity(revConn,indexr);
   const int* indexr_ptr=indexr->getConstPointer();
   const int* revConn_ptr=revConn->getConstPointer();
index 7643a53f006a9916515ffdd0b4c02251150e0d5f..3108533598e38e5ca92306e46517d58f6c8a19cf 100644 (file)
@@ -174,7 +174,7 @@ MEDPARTITIONER::MeshCollection::MeshCollection(MeshCollection& initialCollection
   castAllFields(initialCollection,"cellFieldDouble");
   if (_i_non_empty_mesh<0)
     {
-      for (int i=0; i<_mesh.size(); i++)
+      for (unsigned int i=0; i<_mesh.size(); i++)
         {
           if (_mesh[i])
             {
@@ -1133,8 +1133,8 @@ void MEDPARTITIONER::MeshCollection::buildConnectZones( const NodeMapping& nodeM
       MEDPARTITIONER::ConnectZone* cz = czVec[i];
       if ( !cz                                         ||
            cz->getEntityCorrespNumber( 0,0 ) == 0      ||
-           cz->getLocalDomainNumber  () > _mesh.size() ||
-           cz->getDistantDomainNumber() > _mesh.size() )
+           (unsigned int)cz->getLocalDomainNumber  () > _mesh.size() ||
+           (unsigned int)cz->getDistantDomainNumber() > _mesh.size() )
         continue;
       ParaMEDMEM::MEDCouplingUMesh* mesh1 = _mesh[ cz->getLocalDomainNumber  () ];
       ParaMEDMEM::MEDCouplingUMesh* mesh2 = _mesh[ cz->getDistantDomainNumber() ];
@@ -1463,7 +1463,7 @@ void MEDPARTITIONER::MeshCollection::createJointGroup( const std::vector< int >&
 
   // remove faces from the familyID-the family
   if ( familyID != 0 && famIDs )
-    for ( size_t i = 0; i < totalNbFaces; ++i )
+    for ( int i = 0; i < totalNbFaces; ++i )
       if ( famIDs[i] == familyID )
         famIDs[i] = 0;
 
@@ -1822,7 +1822,7 @@ int MEDPARTITIONER::MeshCollection::getMeshDimension() const
 int MEDPARTITIONER::MeshCollection::getNbOfLocalMeshes() const
 {
   int nb=0;
-  for (int i=0; i<_mesh.size(); i++)
+  for (unsigned int i=0; i<_mesh.size(); i++)
     {
       if (_mesh[i]) nb++;
     }
@@ -1832,7 +1832,7 @@ int MEDPARTITIONER::MeshCollection::getNbOfLocalMeshes() const
 int MEDPARTITIONER::MeshCollection::getNbOfLocalCells() const
 {
   int nb=0;
-  for (int i=0; i<_mesh.size(); i++)
+  for (unsigned int i=0; i<_mesh.size(); i++)
     {
       if (_mesh[i]) nb=nb+_mesh[i]->getNumberOfCells();
     }
@@ -1842,7 +1842,7 @@ int MEDPARTITIONER::MeshCollection::getNbOfLocalCells() const
 int MEDPARTITIONER::MeshCollection::getNbOfLocalFaces() const
 {
   int nb=0;
-  for (int i=0; i<_face_mesh.size(); i++)
+  for (unsigned int i=0; i<_face_mesh.size(); i++)
     {
       if (_face_mesh[i]) nb=nb+_face_mesh[i]->getNumberOfCells();
     }
index 43343c89cadda403236659254bc59c50a6ee61a4..da34f9b3d1237be24e8993e59a92c9e94fd664fa 100644 (file)
@@ -427,7 +427,7 @@ ParaMEDMEM::MEDFileData* MeshCollectionDriver::getMEDFileData()
   meshes = ParaMEDMEM::MEDFileMeshes::New();
   fields = ParaMEDMEM::MEDFileFields::New();
 
-  for (int i=0; i<(_collection->getMesh()).size(); i++)
+  for (unsigned int i=0; i<(_collection->getMesh()).size(); i++)
     {
       ParaMEDMEM::MEDFileMesh* mfm = getMesh( i );
       meshes->pushMesh(mfm);