Remove incorrectly defaulted functions:

* The functions removed in this commit were explicitly defaulted
  but implicitly deleted
This commit is contained in:
seelabs
2019-03-18 12:57:35 -04:00
committed by Nik Bougalis
parent 8ef5b9bab4
commit d8c450d272
4 changed files with 0 additions and 10 deletions

View File

@@ -24,8 +24,6 @@ private:
public: public:
recorder() = default; recorder() = default;
recorder(recorder const&) = default;
recorder& operator=(recorder const&) = default;
/** Returns a report with the results of all completed suites. */ /** Returns a report with the results of all completed suites. */
results const& results const&

View File

@@ -220,8 +220,6 @@ private:
class DirectIPaymentStep : public DirectStepI<DirectIPaymentStep> class DirectIPaymentStep : public DirectStepI<DirectIPaymentStep>
{ {
public: public:
explicit DirectIPaymentStep() = default;
using DirectStepI<DirectIPaymentStep>::DirectStepI; using DirectStepI<DirectIPaymentStep>::DirectStepI;
using DirectStepI<DirectIPaymentStep>::check; using DirectStepI<DirectIPaymentStep>::check;
@@ -265,8 +263,6 @@ public:
class DirectIOfferCrossingStep : public DirectStepI<DirectIOfferCrossingStep> class DirectIOfferCrossingStep : public DirectStepI<DirectIOfferCrossingStep>
{ {
public: public:
explicit DirectIOfferCrossingStep() = default;
using DirectStepI<DirectIOfferCrossingStep>::DirectStepI; using DirectStepI<DirectIOfferCrossingStep>::DirectStepI;
using DirectStepI<DirectIOfferCrossingStep>::check; using DirectStepI<DirectIOfferCrossingStep>::check;

View File

@@ -166,8 +166,6 @@ private:
class XRPEndpointPaymentStep : public XRPEndpointStep<XRPEndpointPaymentStep> class XRPEndpointPaymentStep : public XRPEndpointStep<XRPEndpointPaymentStep>
{ {
public: public:
explicit XRPEndpointPaymentStep() = default;
using XRPEndpointStep<XRPEndpointPaymentStep>::XRPEndpointStep; using XRPEndpointStep<XRPEndpointPaymentStep>::XRPEndpointStep;
XRPAmount XRPAmount

View File

@@ -60,8 +60,6 @@ public:
using iterator_category = using iterator_category =
std::forward_iterator_tag; std::forward_iterator_tag;
const_iterator() = default;
bool bool
operator==(const_iterator const& other) const; operator==(const_iterator const& other) const;