From b528f287c2bf7f1d210034c11597d4d1d3e440d3 Mon Sep 17 00:00:00 2001 From: Pavel Moravec Date: Thu, 14 Aug 2014 08:30:30 +0000 Subject: [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 --- qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'qpid/cpp/src') 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() -- cgit v1.2.1