]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Windows warning hunting
authorageay <ageay>
Tue, 6 Aug 2013 14:52:35 +0000 (14:52 +0000)
committerageay <ageay>
Tue, 6 Aug 2013 14:52:35 +0000 (14:52 +0000)
src/MEDCoupling/MEDCouplingFieldDouble.cxx
src/MEDCoupling/MEDCouplingFieldOverTime.cxx
src/MEDCoupling/MEDCouplingFieldTemplate.cxx
src/MEDCoupling/MEDCouplingMultiFields.cxx
src/MEDCoupling/MEDCouplingRemapper.cxx

index 45488f602954059b328ae5797af49442edf6c957..84bdb53d083f8e7ca53e7d62896810ea4cf792cb 100644 (file)
@@ -3114,7 +3114,7 @@ void MEDCouplingFieldDouble::reprQuickOverview(std::ostream& stream) const throw
       nat=MEDCouplingNatureOfField::GetRepr(_nature);
       stream << "Nature of field : " << nat << ".\n";
     }
-  catch(INTERP_KERNEL::Exception& e)
+  catch(INTERP_KERNEL::Exception& /*e*/)
     {  }
   const MEDCouplingFieldDiscretization *fd(_type);
   if(!fd)
index 01c48b7ebea93c8f6e0405b54fbfa9802c75814c..4eb59b09ad56a9bf191f43131e8eb6033f959932 100644 (file)
@@ -87,14 +87,14 @@ std::string MEDCouplingFieldOverTime::simpleRepr() const
       ms=getDifferentMeshes(refms);
       ret << ms.size() << "\n";
     }
-  catch(INTERP_KERNEL::Exception& e)
+  catch(INTERP_KERNEL::Exception& /*e*/)
     { ret << "Current instance is INVALID !\n"; }
   try
     {
       MEDCouplingDefinitionTime dt=getDefinitionTimeZone();
       dt.appendRepr(ret);
     }
-  catch(INTERP_KERNEL::Exception& e)
+  catch(INTERP_KERNEL::Exception& /*e*/)
     { ret << "Definition zone is INVALID !\n"; }
   return ret.str();
 }
index 235146889f4c6b66ab30eeca3e26e83e4082523e..0ca1bd0a60edbf237564d6b7248d7f25568d5b99 100644 (file)
@@ -139,7 +139,7 @@ void MEDCouplingFieldTemplate::reprQuickOverview(std::ostream& stream) const thr
       nat=MEDCouplingNatureOfField::GetRepr(_nature);
       stream << "Nature of field template : " << nat << ".\n";
     }
-  catch(INTERP_KERNEL::Exception& e)
+  catch(INTERP_KERNEL::Exception& /*e*/)
     {  }
   const MEDCouplingFieldDiscretization *fd(_type);
   if(!fd)
index 963eed05c026b12b649e81f4e1c7d529aa48a373..4e3c6580e604e0cf5c25c3fe3c8dafc13cdaaabe 100644 (file)
@@ -128,7 +128,7 @@ std::string MEDCouplingMultiFields::simpleRepr() const
       ms=getDifferentMeshes(refms);
       ret << ms.size() << "\n";
     }
-  catch(INTERP_KERNEL::Exception& e)
+  catch(INTERP_KERNEL::Exception& /*e*/)
     { ret << "Current instance is INVALID !\n"; }
   return ret.str();
 }
index 45355f150ed3c1bf1c313db7459c87584c4ce56b..2843f883107a5ac08cc6226fc4e1eddbb940ff59 100644 (file)
@@ -801,7 +801,7 @@ bool MEDCouplingRemapper::isInterpKernelOnlyOrNotOnly() const throw(INTERP_KERNE
             INTERP_KERNEL::Interpolation<INTERP_KERNEL::Interpolation3D>::CheckAndSplitInterpolationMethod(method.c_str(),tmp1,tmp2);
             return true;
           }
-        catch(INTERP_KERNEL::Exception& e)
+        catch(INTERP_KERNEL::Exception& /*e*/)
           {
             return false;
           }
@@ -813,7 +813,7 @@ bool MEDCouplingRemapper::isInterpKernelOnlyOrNotOnly() const throw(INTERP_KERNE
             CheckInterpolationMethodManageableByNotOnlyInterpKernel(method);
             return false;
           }
-        catch(INTERP_KERNEL::Exception& e)
+        catch(INTERP_KERNEL::Exception& /*e*/)
           {
             return true;
           }