]> SALOME platform Git repositories - modules/paravis.git/blobdiff - src/Plugins/DevelopedSurface/plugin/DevelopedSurfaceModule/VTKToMEDMem.h
Salome HOME
Copyright update 2022
[modules/paravis.git] / src / Plugins / DevelopedSurface / plugin / DevelopedSurfaceModule / VTKToMEDMem.h
index 6f36d77f4e8b2bed362ee23a3ca44544e96796fa..ca8adecd80b953fc089d4bf9454a84119b7f50f1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2017-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2017-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -28,6 +28,7 @@
 #include "MEDCouplingFieldDouble.hxx"
 #include "MEDCouplingFieldFloat.hxx"
 #include "MEDCouplingFieldInt.hxx"
+#include "MEDCouplingFieldInt64.hxx"
 #include "MEDFileData.hxx"
 #include "MEDFileField.hxx"
 #include "MEDFileMesh.hxx"
@@ -44,8 +45,8 @@ class VTK_EXPORT MZCException : public std::exception
 {
 public:
   MZCException(const std::string& s):_reason(s) { }
-  virtual const char *what() const throw() { return _reason.c_str(); }
-  virtual ~MZCException() throw() { }
+  virtual const char *what() const noexcept { return _reason.c_str(); }
+  virtual ~MZCException() noexcept { }
 private:
   std::string _reason;
 };