Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f65a6e34 authored by berenger-bramas's avatar berenger-bramas
Browse files

Remove empty destructor in extensions.

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/scalfmm/scalfmm/trunk@236 2616d619-271b-44dc-8df4-d4a8f33a7222
parent 54ebc4bf
Branches
Tags
No related merge requests found
...@@ -32,10 +32,6 @@ public: ...@@ -32,10 +32,6 @@ public:
FExtendCellType(const FExtendCellType& other) : type(other.type) { FExtendCellType(const FExtendCellType& other) : type(other.type) {
} }
/** Destructor */
virtual ~FExtendCellType(){
}
/** Copy operator */ /** Copy operator */
FExtendCellType& operator=(const FExtendCellType& other) { FExtendCellType& operator=(const FExtendCellType& other) {
this->type = other.type; this->type = other.type;
......
...@@ -25,10 +25,6 @@ public: ...@@ -25,10 +25,6 @@ public:
FExtendCoordinate(const FExtendCoordinate& other) : coordinate(other.coordinate) { FExtendCoordinate(const FExtendCoordinate& other) : coordinate(other.coordinate) {
} }
/** Destructor */
virtual ~FExtendCoordinate(){
}
/** Copy operator */ /** Copy operator */
FExtendCoordinate& operator=(const FExtendCoordinate& other) { FExtendCoordinate& operator=(const FExtendCoordinate& other) {
this->coordinate = other.coordinate; this->coordinate = other.coordinate;
......
...@@ -26,10 +26,6 @@ public: ...@@ -26,10 +26,6 @@ public:
FExtendForces(const FExtendForces& other) : forces(other.forces) { FExtendForces(const FExtendForces& other) : forces(other.forces) {
} }
/** Destructor */
virtual ~FExtendForces(){
}
/** Copy operator */ /** Copy operator */
FExtendForces& operator=(const FExtendForces& other) { FExtendForces& operator=(const FExtendForces& other) {
this->forces = other.forces; this->forces = other.forces;
......
...@@ -25,10 +25,6 @@ public: ...@@ -25,10 +25,6 @@ public:
FExtendMortonIndex(const FExtendMortonIndex& other) : mortonIndex(other.mortonIndex) { FExtendMortonIndex(const FExtendMortonIndex& other) : mortonIndex(other.mortonIndex) {
} }
/** Destructor */
virtual ~FExtendMortonIndex(){
}
/** Copy operator */ /** Copy operator */
FExtendMortonIndex& operator=(const FExtendMortonIndex& other) { FExtendMortonIndex& operator=(const FExtendMortonIndex& other) {
this->mortonIndex = other.mortonIndex; this->mortonIndex = other.mortonIndex;
......
...@@ -31,10 +31,6 @@ public: ...@@ -31,10 +31,6 @@ public:
FExtendParticleType(const FExtendParticleType& other) : type(other.type) { FExtendParticleType(const FExtendParticleType& other) : type(other.type) {
} }
/** Destructor */
virtual ~FExtendParticleType(){
}
/** Copy operator */ /** Copy operator */
FExtendParticleType& operator=(const FExtendParticleType& other) { FExtendParticleType& operator=(const FExtendParticleType& other) {
this->type = other.type; this->type = other.type;
......
...@@ -24,10 +24,6 @@ public: ...@@ -24,10 +24,6 @@ public:
FExtendPhysicalValue(const FExtendPhysicalValue& other) : physicalValue(other.physicalValue) { FExtendPhysicalValue(const FExtendPhysicalValue& other) : physicalValue(other.physicalValue) {
} }
/** Destructor */
virtual ~FExtendPhysicalValue(){
}
/** Copy Constructor */ /** Copy Constructor */
FExtendPhysicalValue& operator=(const FExtendPhysicalValue& other) { FExtendPhysicalValue& operator=(const FExtendPhysicalValue& other) {
this->physicalValue = other.physicalValue; this->physicalValue = other.physicalValue;
......
...@@ -25,10 +25,6 @@ public: ...@@ -25,10 +25,6 @@ public:
FExtendPosition(const FExtendPosition& other) : position(other.position) { FExtendPosition(const FExtendPosition& other) : position(other.position) {
} }
/** Destructor */
virtual ~FExtendPosition(){
}
/** Copy operator */ /** Copy operator */
FExtendPosition& operator=(const FExtendPosition& other) { FExtendPosition& operator=(const FExtendPosition& other) {
this->position = other.position; this->position = other.position;
......
...@@ -24,10 +24,6 @@ public: ...@@ -24,10 +24,6 @@ public:
FExtendPotential(const FExtendPotential& other) : potential(other.potential) { FExtendPotential(const FExtendPotential& other) : potential(other.potential) {
} }
/** Destructor */
virtual ~FExtendPotential(){
}
/** Copy operator */ /** Copy operator */
FExtendPotential& operator=(const FExtendPotential& other) { FExtendPotential& operator=(const FExtendPotential& other) {
this->potential = other.potential; this->potential = other.potential;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment