You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by jd...@apache.org on 2020/10/05 10:09:27 UTC

[qpid-cpp] branch master updated: QPID-8476: Fix order within member initializer list (#23)

This is an automated email from the ASF dual-hosted git repository.

jdanek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new f273d15  QPID-8476: Fix order within member initializer list (#23)
f273d15 is described below

commit f273d159714dcdd2217a7e59e3537261c309a91a
Author: Franz Hollerer <f....@gmx.net>
AuthorDate: Mon Oct 5 12:09:19 2020 +0200

    QPID-8476: Fix order within member initializer list (#23)
---
 examples/messaging/spout.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/messaging/spout.cpp b/examples/messaging/spout.cpp
index ba5ffb2..28bb4ca 100644
--- a/examples/messaging/spout.cpp
+++ b/examples/messaging/spout.cpp
@@ -58,8 +58,8 @@ struct Options : OptionParser
         : OptionParser("Usage: spout [OPTIONS] ADDRESS", "Send messages to the specified address"),
           url("127.0.0.1"),
           timeout(0),
-          count(1),
           durable(false),
+          count(1),
           print(false)
     {
         add("broker,b", url, "url of broker to connect to");


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