summaryrefslogtreecommitdiff
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
commitb528f287c2bf7f1d210034c11597d4d1d3e440d3 (patch)
tree1bf2064b94a5ce3a717afa43c208190e8750f76a
parentb7249f0443008ae230266759a7f82127d14fe89e (diff)
downloadqpid-python-b528f287c2bf7f1d210034c11597d4d1d3e440d3.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@1617897 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp b/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp
index c282a86c22..1a254c1846 100644
--- a/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp
+++ b/qpid/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()