diff options
Diffstat (limited to 'cpp/src/qpid/broker/SemanticState.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/SemanticState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SemanticState.cpp b/cpp/src/qpid/broker/SemanticState.cpp index 18c29c09f9..469fe760a0 100644 --- a/cpp/src/qpid/broker/SemanticState.cpp +++ b/cpp/src/qpid/broker/SemanticState.cpp @@ -166,7 +166,7 @@ bool SemanticState::cancel(const string& tag) void SemanticState::startTx() { - txBuffer = TxBuffer::shared_ptr(new TxBuffer()); + txBuffer = boost::intrusive_ptr<TxBuffer>(new TxBuffer()); session.getBroker().getBrokerObservers().startTx(txBuffer); session.startTx(); //just to update statistics } |
