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:
recorder() = default;
recorder(recorder const&) = default;
recorder& operator=(recorder const&) = default;
/** Returns a report with the results of all completed suites. */
results const&

View File

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

View File

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

View File

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