diff options
Diffstat (limited to 'cpp/src/qpid/broker/DtxAck.h')
-rw-r--r-- | cpp/src/qpid/broker/DtxAck.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/DtxAck.h b/cpp/src/qpid/broker/DtxAck.h index d43532906a..2b7b2f0944 100644 --- a/cpp/src/qpid/broker/DtxAck.h +++ b/cpp/src/qpid/broker/DtxAck.h @@ -31,10 +31,10 @@ namespace qpid { namespace broker { class DtxAck : public TxOp{ - std::list<DeliveryRecord> pending; + DeliveryRecords pending; public: - DtxAck(const framing::SequenceSet& acked, std::list<DeliveryRecord>& unacked); + DtxAck(const framing::SequenceSet& acked, DeliveryRecords& unacked); virtual bool prepare(TransactionContext* ctxt) throw(); virtual void commit() throw(); virtual void rollback() throw(); |