Clang-tidy changes

This commit is contained in:
Bart
2026-06-07 17:27:09 -04:00
parent a79598adcb
commit ab0c2f96b1

View File

@@ -43,7 +43,7 @@ void
CanonicalTXSet::insert(std::shared_ptr<STTx const> txn)
{
Key key(accountKey(txn->getAccountID(sfAccount)), txn->getSeqProxy(), txn->getTransactionID());
map_.emplace(std::move(key), std::move(txn));
map_.emplace(key, std::move(txn));
}
std::shared_ptr<STTx const>