diff options
Diffstat (limited to 'compat')
| -rw-r--r-- | compat/correlation-calibrator.cpp | 4 | ||||
| -rw-r--r-- | compat/correlation-calibrator.hpp | 2 | ||||
| -rw-r--r-- | compat/tr.cpp | 1 | ||||
| -rw-r--r-- | compat/tr.hpp | 1 | 
4 files changed, 1 insertions, 7 deletions
| diff --git a/compat/correlation-calibrator.cpp b/compat/correlation-calibrator.cpp index b2e83153..a58d31cd 100644 --- a/compat/correlation-calibrator.cpp +++ b/compat/correlation-calibrator.cpp @@ -18,10 +18,6 @@  using namespace correlation_calibrator_impl; -correlation_calibrator::correlation_calibrator() -{ -} -  static constexpr unsigned nbuckets[6] =  {      x_nbuckets, diff --git a/compat/correlation-calibrator.hpp b/compat/correlation-calibrator.hpp index 9c866545..2c9e1937 100644 --- a/compat/correlation-calibrator.hpp +++ b/compat/correlation-calibrator.hpp @@ -63,7 +63,7 @@ class OTR_COMPAT_EXPORT correlation_calibrator final      bool check_buckets(const vec6& data);  public: -    correlation_calibrator(); +    correlation_calibrator() = default;      void input(const vec6& data);      mat66 get_coefficients() const;      unsigned sample_count() const; diff --git a/compat/tr.cpp b/compat/tr.cpp index 72e02527..58f0a71a 100644 --- a/compat/tr.cpp +++ b/compat/tr.cpp @@ -10,4 +10,3 @@ TR& TR::operator=(const TR&)      return *this;  } -TR::~TR() {} diff --git a/compat/tr.hpp b/compat/tr.hpp index 7bb4fb71..6af45161 100644 --- a/compat/tr.hpp +++ b/compat/tr.hpp @@ -13,7 +13,6 @@ class OTR_COMPAT_EXPORT TR : public QObject  public:      TR();      TR(const TR&); -    ~TR() override;      TR& operator=(const TR& other);  }; | 
