mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-20 11:45:53 +00:00
fix gcc 9.3 compilation issue
This commit is contained in:
@@ -38,7 +38,11 @@ struct TransactionAndMetadata
|
|||||||
uint32_t ledgerSequence;
|
uint32_t ledgerSequence;
|
||||||
uint32_t date;
|
uint32_t date;
|
||||||
bool
|
bool
|
||||||
operator==(const TransactionAndMetadata&) const = default;
|
operator==(const TransactionAndMetadata& other) const
|
||||||
|
{
|
||||||
|
return transaction == other.transaction && metadata == other.metadata &&
|
||||||
|
ledgerSequence == other.ledgerSequence && date == other.date;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct AccountTransactionsCursor
|
struct AccountTransactionsCursor
|
||||||
|
|||||||
Reference in New Issue
Block a user