Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ AqueousPoreParameters::AqueousPoreParameters(
pore_rotation_angle_( pore_rotation_angle )
{}

AqueousPoreParameters::~AqueousPoreParameters() {}

AqueousPoreParameters::AqueousPoreParameters( AqueousPoreParameters const & src )
: utility::VirtualBase( src ),
min_center_x_( src.min_center_x_ ),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public:
);

AqueousPoreParameters(AqueousPoreParameters const & src);
~AqueousPoreParameters() override;
~AqueousPoreParameters() override = default;

AqueousPoreParametersOP
clone() const;
Expand Down
2 changes: 0 additions & 2 deletions source/src/core/conformation/membrane/ImplicitLipidInfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ ImplicitLipidInfo::ImplicitLipidInfo(
initialize_implicit_lipid_electricfield_parameters();
}

ImplicitLipidInfo::~ImplicitLipidInfo() {}

ImplicitLipidInfoOP
ImplicitLipidInfo::clone() const {
return ImplicitLipidInfoOP( new ImplicitLipidInfo( *this ) );
Expand Down
2 changes: 1 addition & 1 deletion source/src/core/conformation/membrane/ImplicitLipidInfo.hh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public:
);


~ImplicitLipidInfo() override;
~ImplicitLipidInfo() override = default;

ImplicitLipidInfoOP
clone() const;
Expand Down
4 changes: 0 additions & 4 deletions source/src/core/conformation/membrane/MembraneGeometry.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ MembraneGeometry::MembraneGeometry(
}


/// @brief Destructor
MembraneGeometry::~MembraneGeometry() {}


/// @brief Are we accommodating the aqueous pore?
bool
MembraneGeometry::has_pore() const {
Expand Down
2 changes: 1 addition & 1 deletion source/src/core/conformation/membrane/MembraneGeometry.hh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public: // Constructors & Setup
);

/// @brief Destructor
~MembraneGeometry() override;
~MembraneGeometry() override = default;

virtual MembraneGeometryOP
clone() const = 0;
Expand Down
3 changes: 0 additions & 3 deletions source/src/core/conformation/membrane/MembraneInfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,6 @@ MembraneInfo::operator=( MembraneInfo const & src ) {
return *this;
}

/// @brief Destructor
MembraneInfo::~MembraneInfo() {}

/// @brief Generate a string representation of information represented by ths MembraneInfo
void
MembraneInfo::show() const {
Expand Down
2 changes: 1 addition & 1 deletion source/src/core/conformation/membrane/MembraneInfo.hh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public: // Constructors & Setup
operator=( MembraneInfo const & src );

/// @brief Destructor
~MembraneInfo() override;
~MembraneInfo() override = default;

/// @brief Generate a string representation of information represented by this MembraneInfo and send it to std::cout
virtual void show() const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ Bicelle::Bicelle(
update_outer_radius();
}

/// @brief Destructor
Bicelle::~Bicelle() {}


MembraneGeometryOP
Bicelle::clone() const {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public: // Constructors & Setup
Bicelle( core::Real steepness, core::Real thickness, core::Real bicelle_inner_radius, AqueousPoreParametersOP aqueous_pore );

/// @brief Destructor
~Bicelle() override;
~Bicelle() override = default;

MembraneGeometryOP
clone() const override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,6 @@ DoubleVesicle::DoubleVesicle(
}


/// @brief Destructor
DoubleVesicle::~DoubleVesicle() {}

MembraneGeometryOP DoubleVesicle::clone() const {
return DoubleVesicleOP( new DoubleVesicle( *this ) );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public: // Constructors & Setup
DoubleVesicle( core::Real steepness, core::Real thickness, core::Real inner_radius, core::Real distance, AqueousPoreParametersOP aqueous_pore);

/// @brief Destructor
~DoubleVesicle() override;
~DoubleVesicle() override = default;

MembraneGeometryOP
clone() const override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ Slab::Slab(
MembraneGeometry( steepness, thickness, aqueous_pore )
{}

/// @brief Destructor
Slab::~Slab() {}

MembraneGeometryOP Slab::clone() const {
return SlabOP( new Slab( *this ) );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public: // Constructors & Setup
Slab( core::Real steepness, core::Real thickness, AqueousPoreParametersOP aqueous_pore );

/// @brief Destructor
~Slab() override;
~Slab() override = default;

MembraneGeometryOP
clone() const override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ Vesicle::Vesicle(
radius_( radius )
{}

/// @brief Destructor
Vesicle::~Vesicle() {}

MembraneGeometryOP Vesicle::clone() const {
return VesicleOP( new Vesicle( *this ) );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public: // Constructors & Setup
Vesicle( core::Real steepness, core::Real thickness, core::Real radius, AqueousPoreParametersOP aqueous_pore );

/// @brief Destructor
~Vesicle() override;
~Vesicle() override = default;

MembraneGeometryOP
clone() const override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ BooleanValuedParameter::BooleanValuedParameter( BooleanValuedParameter const & s
{
}

BooleanValuedParameter::~BooleanValuedParameter() {}

/// @brief Make a copy of this object ( allocate actual memory for it )
///
ParameterOP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public:

BooleanValuedParameter( BooleanValuedParameter const & src );

~BooleanValuedParameter() override;
~BooleanValuedParameter() override = default;

/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ RealValuedParameter::RealValuedParameter( RealValuedParameter const & src ) :
{
}

RealValuedParameter::~RealValuedParameter() {}


/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public:

RealValuedParameter( RealValuedParameter const & src );

~RealValuedParameter() override;
~RealValuedParameter() override = default;

/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ RealVectorValuedParameter::RealVectorValuedParameter( RealVectorValuedParameter
{
}

RealVectorValuedParameter::~RealVectorValuedParameter() {}


/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public:

RealVectorValuedParameter( RealVectorValuedParameter const & src );

~RealVectorValuedParameter() override;
~RealVectorValuedParameter() override = default;

/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ SizeValuedParameter::SizeValuedParameter( SizeValuedParameter const & src ) :
{
}

SizeValuedParameter::~SizeValuedParameter() {}

/// @brief Make a copy of this object ( allocate actual memory for it )
///
ParameterOP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public:

SizeValuedParameter( SizeValuedParameter const & src );

~SizeValuedParameter() override;
~SizeValuedParameter() override = default;

/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ SizeVectorValuedParameter::SizeVectorValuedParameter( SizeVectorValuedParameter
{
}

SizeVectorValuedParameter::~SizeVectorValuedParameter() {}

/// @brief Make a copy of this object ( allocate actual memory for it )
///
ParameterOP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public:

SizeVectorValuedParameter( SizeVectorValuedParameter const & src );

~SizeVectorValuedParameter() override;
~SizeVectorValuedParameter() override = default;

/// @brief Make a copy of this object ( allocate actual memory for it )
///
Expand Down
2 changes: 1 addition & 1 deletion source/src/core/energy_methods/SAXSEnergy.hh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public:
SAXSEnergy(const std::string &,const utility::vector1<Real> &,const utility::vector1<Real> &,
core::scoring::ScoreType, core::scoring::methods::EnergyMethodCreatorOP);

~SAXSEnergy() override {}
~SAXSEnergy() override = default;

core::scoring::methods::EnergyMethodOP clone() const override {

Expand Down
4 changes: 0 additions & 4 deletions source/src/core/io/silent/SilentFileData.hh
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,6 @@ public:
it_( s_iter)
{}

~iterator() {}

bool operator==( const iterator& other ) const {
return ( it_ == other.it_ );
}
Expand Down Expand Up @@ -505,8 +503,6 @@ public:
it_( s_iter )
{}

~const_iterator() {}

bool operator==( const const_iterator& other ) {
return ( it_ == other.it_ );
}
Expand Down
13 changes: 0 additions & 13 deletions source/src/core/pack/interaction_graph/RotamerDots.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,6 @@ DotSphere::DotSphere() :
zero();
}

///
DotSphere::~DotSphere() = default;

///
/// @brief
/// copy constructor
Expand Down Expand Up @@ -521,11 +518,6 @@ RotamerDots::RotamerDots(

}

///
RotamerDots::~RotamerDots() {
//TR_RD << "called destructor" << std::endl;
}

///
/// @brief
/// copy constructor
Expand Down Expand Up @@ -1576,9 +1568,6 @@ RotamerDotsCache::RotamerDotsCache( Size num_atoms ) {
///
RotamerDotsCache::RotamerDotsCache( RotamerDotsCache const & /*rhs*/ ) = default;

///
RotamerDotsCache::~RotamerDotsCache() = default;

///
/// @brief
/// assignment operator
Expand Down Expand Up @@ -1682,8 +1671,6 @@ InvRotamerDots::InvRotamerDots( InvRotamerDots const & src ) :
radii_( src.radii_ )
{}

InvRotamerDots::~InvRotamerDots() = default;

InvRotamerDots &
InvRotamerDots::operator= ( InvRotamerDots const & rhs ) {
if ( this != & rhs ) {
Expand Down
8 changes: 4 additions & 4 deletions source/src/core/pack/interaction_graph/RotamerDots.hh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class DotSphere {

public:
DotSphere();
~DotSphere();
~DotSphere() = default;
DotSphere( DotSphere const & rhs );
DotSphere & operator= ( DotSphere const & rhs );
bool operator!= ( DotSphere const & rhs );
Expand Down Expand Up @@ -139,7 +139,7 @@ class RotamerDots : public utility::VirtualBase {
public:
RotamerDots();
RotamerDots( conformation::ResidueCOP rotamer, bool exclude_hydrogen_atoms = false, bool use_expanded_polar_atom_radii = false );
~RotamerDots() override;
~RotamerDots() override = default;
RotamerDots( RotamerDots const & rhs );

void copy(RotamerDots const & rhs);
Expand Down Expand Up @@ -334,7 +334,7 @@ public:
RotamerDotsCache( core::Size num_atoms );
RotamerDotsCache( RotamerDotsCache const & rhs );
RotamerDotsCache & operator= ( RotamerDotsCache const & rhs );
~RotamerDotsCache();
~RotamerDotsCache() = default;

void resize( core::Size num_atoms );
void zero();
Expand Down Expand Up @@ -362,7 +362,7 @@ class InvRotamerDots : public utility::VirtualBase {
public:
InvRotamerDots();
InvRotamerDots( InvRotamerDots const & src );
~InvRotamerDots() override;
~InvRotamerDots() override = default;

InvRotamerDots & operator = ( InvRotamerDots const & rhs );

Expand Down
6 changes: 0 additions & 6 deletions source/src/core/scoring/etable/EtableEnergy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,6 @@ EtableEvaluator::EtableEvaluator( Etable const & etable ) :
hydrogen_interaction_cutoff2_( etable.hydrogen_interaction_cutoff2() )
{}

EtableEvaluator::~EtableEvaluator() = default;

TableLookupEvaluator::TableLookupEvaluator(
Etable const & etable_in
) :
Expand All @@ -374,8 +372,6 @@ TableLookupEvaluator::TableLookupEvaluator(
//dis2_step_( 1.0 / (Real) etable_bins_per_A2_ )
{}

TableLookupEvaluator::~TableLookupEvaluator() = default;

EtableEvaluatorOP
TableLookupEvaluator::clone() const {
return utility::pointer::make_shared< TableLookupEvaluator >( *this );
Expand Down Expand Up @@ -476,8 +472,6 @@ AnalyticEtableEvaluator::AnalyticEtableEvaluator( Etable const & etable ) :
safe_max_dis2_( etable.get_safe_max_dis2() )
{}

AnalyticEtableEvaluator::~AnalyticEtableEvaluator() = default;

EtableEvaluatorOP
AnalyticEtableEvaluator::clone() const {
return utility::pointer::make_shared< AnalyticEtableEvaluator >( *this );
Expand Down
6 changes: 3 additions & 3 deletions source/src/core/scoring/etable/EtableEnergy.hh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class EtableEvaluator : public utility::VirtualBase {

public:
EtableEvaluator( Etable const & etable );
~EtableEvaluator() override;
~EtableEvaluator() override = default;

virtual EtableEvaluatorOP clone() const = 0;

Expand Down Expand Up @@ -216,7 +216,7 @@ class AnalyticEtableEvaluator : public EtableEvaluator
{
public:
AnalyticEtableEvaluator( Etable const & etable );
~AnalyticEtableEvaluator() override;
~AnalyticEtableEvaluator() override = default;

EtableEvaluatorOP clone() const override;

Expand Down Expand Up @@ -507,7 +507,7 @@ class TableLookupEvaluator : public EtableEvaluator
{
public:
TableLookupEvaluator( Etable const & etable_in );
~TableLookupEvaluator() override;
~TableLookupEvaluator() override = default;

EtableEvaluatorOP clone() const override;

Expand Down
Loading