]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Suppression of useless attributes.
authorageay <ageay>
Wed, 4 Nov 2009 15:45:21 +0000 (15:45 +0000)
committerageay <ageay>
Wed, 4 Nov 2009 15:45:21 +0000 (15:45 +0000)
src/ParaMEDMEM/ParaFIELD.cxx
src/ParaMEDMEM/ParaFIELD.hxx

index d9a9f7e2c1aad2ec40697507f341321331385bbd..10fc964aaaaa0ec922b7f20d5fbfcab3e72bdb9f 100644 (file)
@@ -65,9 +65,7 @@ namespace ParaMEDMEM
   ParaFIELD::ParaFIELD(TypeOfField type, TypeOfTimeDiscretization td, ParaMESH* para_support, const ComponentTopology& component_topology)
     :_field(0),
      _component_topology(component_topology),_topology(0),
-     _support(para_support),
-     _has_field_ownership(true),
-     _has_support_ownership(false)
+     _support(para_support)
   {
     if (para_support->isStructured() || (para_support->getTopology()->getProcGroup()->size()==1 && component_topology.nbBlocks()!=1))
       {
@@ -110,9 +108,7 @@ namespace ParaMEDMEM
   ParaFIELD::ParaFIELD(MEDCouplingFieldDouble* subdomain_field, const ProcessorGroup& proc_group):
     _field(subdomain_field),
     _component_topology(ComponentTopology(_field->getNumberOfComponents())),_topology(0),
-    _support(),
-    _has_field_ownership(false),
-    _has_support_ownership(true)
+    _support()
   {
     if(_field)
       _field->incrRef();
index 22adbf5c043ca55fda31315129ecf2e900263c94..3bd12d4767a8cb1eaab012f7da77d8e429237d46 100644 (file)
@@ -56,8 +56,6 @@ namespace ParaMEDMEM
     Topology* _topology; 
 
     ParaMESH* _support;
-    bool _has_field_ownership;
-    bool _has_support_ownership;
   };
 
 }