summaryrefslogtreecommitdiff
path: root/cpp/src/qpid
diff options
context:
space:
mode:
authorPavel Moravec <pmoravec@apache.org>2014-08-14 08:30:30 +0000
committerPavel Moravec <pmoravec@apache.org>2014-08-14 08:30:30 +0000
commit4cda051d70b43cea57b9fb87a468683cf78dcb9f (patch)
tree172ef7007e6e320dcfa0192c3e794194acf6a7c6 /cpp/src/qpid
parent0e5b1b4603db99bcdced58b5e95d397f3dd37378 (diff)
downloadqpid-python-4cda051d70b43cea57b9fb87a468683cf78dcb9f.tar.gz
[no jira]: fixing commit 1617841 that broke building (unreliable to be initialized after nextId)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1617897 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
-rw-r--r--cpp/src/qpid/messaging/amqp/SenderContext.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/qpid/messaging/amqp/SenderContext.cpp b/cpp/src/qpid/messaging/amqp/SenderContext.cpp
index c282a86c22..1a254c1846 100644
--- a/cpp/src/qpid/messaging/amqp/SenderContext.cpp
+++ b/cpp/src/qpid/messaging/amqp/SenderContext.cpp
@@ -44,8 +44,7 @@ SenderContext::SenderContext(pn_session_t* session, const std::string& n, const
: name(n),
address(a),
helper(address),
- sender(pn_sender(session, n.c_str())), capacity(50), unreliable(helper.isUnreliable()),
- nextId(0),
+ sender(pn_sender(session, n.c_str())), nextId(0), capacity(50), unreliable(helper.isUnreliable()),
setToOnSend(setToOnSend_) {}
SenderContext::~SenderContext()