You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by pm...@apache.org on 2014/08/14 10:30:30 UTC

svn commit: r1617897 - /qpid/trunk/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp

Author: pmoravec
Date: Thu Aug 14 08:30:30 2014
New Revision: 1617897

URL: http://svn.apache.org/r1617897
Log:
[no jira]: fixing commit 1617841 that broke building (unreliable to be initialized after nextId)

Modified:
    qpid/trunk/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp?rev=1617897&r1=1617896&r2=1617897&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp Thu Aug 14 08:30:30 2014
@@ -44,8 +44,7 @@ SenderContext::SenderContext(pn_session_
   : 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()



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org