mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-20 19:56:00 +00:00
fix gcc 9.3 compilation issue
This commit is contained in:
@@ -38,7 +38,11 @@ struct TransactionAndMetadata
|
||||
uint32_t ledgerSequence;
|
||||
uint32_t date;
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user