Skip to content

Commit

Permalink
Merge pull request #644 from lsst/tickets/DM-13385
Browse files Browse the repository at this point in the history
DM-13385: Remove unnecessary virtual dtor/member function declarations
  • Loading branch information
mwittgen authored Feb 7, 2023
2 parents 88a2041 + 696682c commit 4d73512
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/lsst/afw/image/Exposure.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class Exposure {

/** Destructor
*/
virtual ~Exposure();
~Exposure();

// Get Members
/// Return the MaskedImage
Expand Down
2 changes: 1 addition & 1 deletion include/lsst/afw/math/Background.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class BackgroundControl {
BackgroundControl& operator=(BackgroundControl const&) = default;
BackgroundControl& operator=(BackgroundControl&&) = default;

virtual ~BackgroundControl() = default;
~BackgroundControl() = default;
void setNxSample(int nxSample) {
if (nxSample <= 0) {
throw LSST_EXCEPT(lsst::pex::exceptions::LengthError,
Expand Down

0 comments on commit 4d73512

Please sign in to comment.