mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 18:45:55 +00:00
Remove incorrectly defaulted functions:
* The functions removed in this commit were explicitly defaulted but implicitly deleted
This commit is contained in:
@@ -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&
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -166,8 +166,6 @@ private:
|
||||
class XRPEndpointPaymentStep : public XRPEndpointStep<XRPEndpointPaymentStep>
|
||||
{
|
||||
public:
|
||||
explicit XRPEndpointPaymentStep() = default;
|
||||
|
||||
using XRPEndpointStep<XRPEndpointPaymentStep>::XRPEndpointStep;
|
||||
|
||||
XRPAmount
|
||||
|
||||
@@ -60,8 +60,6 @@ public:
|
||||
using iterator_category =
|
||||
std::forward_iterator_tag;
|
||||
|
||||
const_iterator() = default;
|
||||
|
||||
bool
|
||||
operator==(const_iterator const& other) const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user