mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-21 02:55:50 +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:
|
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&
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user