]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Suppression of warnings.
authorageay <ageay>
Tue, 26 Oct 2010 05:58:10 +0000 (05:58 +0000)
committerageay <ageay>
Tue, 26 Oct 2010 05:58:10 +0000 (05:58 +0000)
src/INTERP_KERNEL/InterpKernelMatrix.hxx

index b8110641bb2009de1fd30a9c34a02f63f788f55d..1c85e511188947a7b7c068d274a38378ffad907e 100755 (executable)
@@ -58,13 +58,13 @@ namespace INTERP_KERNEL
       Row (const Row& row)
       {
         this->resize(row.size());
-        for (int i=0; i<this->size(); i++)
+        for (unsigned int i=0; i<this->size(); i++)
           (*this)[i]=row[i];
       }
       Row& operator= (const Row& row)
       {
         this->resize(row.size());
-        for (int i=0; i<this->size(); i++)
+        for (unsigned int i=0; i<this->size(); i++)
           (*this)[i]=row[i];
         return *this;
       }
@@ -90,7 +90,7 @@ namespace INTERP_KERNEL
   public:
     typedef Row value_type;
   public:
-    Matrix():_coeffs(0), _cols(0), _nb_rows(0), _is_configured(false)
+    Matrix():_nb_rows(0), _coeffs(0), _cols(0), _is_configured(false)
     { }
     Matrix(int nbrows):_coeffs(0), _cols(0), _is_configured(false)
     { _nb_rows=nbrows; }
@@ -209,7 +209,7 @@ namespace INTERP_KERNEL
       if (!_is_configured)
         configure();
       
-      for (int i=0; i< _nb_rows; i++)
+      for (unsigned int i=0; i< _nb_rows; i++)
         {
           for(int comp = 0; comp < nb_comp; comp++)
             output[i*nb_comp+comp]=0.;
@@ -265,7 +265,7 @@ namespace INTERP_KERNEL
         for(int comp = 0; comp < nb_comp; comp++)
           output[icol*nb_comp+comp]=0.;
 
-      for (int i=0; i< _nb_rows; i++)
+      for (unsigned int i=0; i< _nb_rows; i++)
         {
           for (unsigned int j=_ncols_offset[i]; j< _ncols_offset[i+1]; j++)
             {
@@ -286,7 +286,7 @@ namespace INTERP_KERNEL
         configure();
       for (int icol=0; icol< nb_cols; icol++)
         output[icol]=0.;
-      for (int i=0; i< _nb_rows; i++)
+      for (unsigned int i=0; i< _nb_rows; i++)
         {
           for (unsigned int j=_ncols_offset[i]; j< _ncols_offset[i+1]; j++)
             {
@@ -304,7 +304,7 @@ namespace INTERP_KERNEL
     {
       if (!_is_configured)
         configure();
-      for (int i=0; i< _nb_rows; i++)
+      for (unsigned int i=0; i< _nb_rows; i++)
         {
           output[i]=0;
           for (unsigned int j=_ncols_offset[i]; j< _ncols_offset[i+1]; j++)