]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Removing deprecated exception specifications
authorabn <adrien.bruneton@cea.fr>
Wed, 6 Nov 2019 14:18:13 +0000 (15:18 +0100)
committerabn <adrien.bruneton@cea.fr>
Wed, 6 Nov 2019 14:18:13 +0000 (15:18 +0100)
src/ParaMEDMEM/DisjointDEC.cxx
src/ParaMEDMEM/DisjointDEC.hxx
src/ParaMEDMEM/ParaGRID.cxx
src/ParaMEDMEM/ParaGRID.hxx

index 28b4b1dcedcb70fb8785240f334ae56b1b9556ce..334af2106f09093e1d5d718ee61f037e841b9e44 100644 (file)
@@ -373,7 +373,7 @@ namespace MEDCoupling
     return _union_group->containsMyRank();
   }
 
-  void DisjointDEC::compareFieldAndMethod() const throw(INTERP_KERNEL::Exception)
+  void DisjointDEC::compareFieldAndMethod() const
   {
     if (_local_field)
       {
index 21142017b25a75bee18c6a0dee7df844d6e02b43..5efcffbc7b921d111a215e07cff6f62ebcae0361 100644 (file)
@@ -71,7 +71,7 @@ namespace MEDCoupling
     bool isInTargetSide() const;
     bool isInUnion() const;
   protected:
-    void compareFieldAndMethod() const throw(INTERP_KERNEL::Exception);
+    void compareFieldAndMethod() const;
     void cleanInstance();
     void copyInstance(const DisjointDEC& other);
     void checkPartitionGroup() const;
index 51292d180905705bd943a0ebe799855092d81780..cd89efe8275cdcd660856041f8746883967b0f31 100644 (file)
@@ -31,7 +31,7 @@ using namespace std;
 namespace MEDCoupling
 {
   
-  ParaGRID::ParaGRID(MEDCouplingCMesh* global_grid, Topology* topology) throw(INTERP_KERNEL::Exception) :
+  ParaGRID::ParaGRID(MEDCouplingCMesh* global_grid, Topology* topology) 
     _global_axis(), _my_domain_id(0)
   {
     _block_topology = dynamic_cast<BlockTopology*>(topology);
index 3348c07dc54f71f2b9acaa43ad51d34fa47c52ae..30d587beb5390cb9f4cb88aec11caad2ff1b5890 100644 (file)
@@ -37,7 +37,7 @@ namespace MEDCoupling
   class ParaGRID
   {
   public:
-    ParaGRID(MEDCouplingCMesh* global_grid, Topology* topology) throw(INTERP_KERNEL::Exception);
+    ParaGRID(MEDCouplingCMesh* global_grid, Topology* topology)
     BlockTopology * getBlockTopology() const { return _block_topology; }
     virtual ~ParaGRID();
     MEDCouplingCMesh* getGrid() const { return _grid; }