Salome HOME
Enable C++0x/C++11 support
[modules/med.git] / src / MEDLoader / MEDFileMeshLL.cxx
index 218f7bb724c2c05df6dc657583f41f7ff3e31b3b..cf6177bebd19549aab5fe0654c51dfa18426def3 100644 (file)
@@ -128,7 +128,7 @@ double MEDFileMeshL2::CheckMeshTimeStep(med_idt fid, const std::string& mName, i
   for(int i=0;i<nstep;i++)
     {
       MEDFILESAFECALLERRD0(MEDmeshComputationStepInfo,(fid,mName.c_str(),i+1,&numdt,&numit,&dtt));
-      p[i]=std::make_pair<int,int>(numdt,numit);
+      p[i]=std::make_pair(numdt,numit);
       found=(numdt==dt) && (numit==numit);
     }
   if(!found)