From commits-return-47785-apmail-qpid-commits-archive=qpid.apache.org@qpid.apache.org Tue Feb 5 17:09:56 2019 Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DAE4218634 for ; Tue, 5 Feb 2019 17:09:56 +0000 (UTC) Received: (qmail 60358 invoked by uid 500); 5 Feb 2019 17:09:56 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 60327 invoked by uid 500); 5 Feb 2019 17:09:56 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 60318 invoked by uid 99); 5 Feb 2019 17:09:56 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Feb 2019 17:09:56 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 391E5881F8; Tue, 5 Feb 2019 17:09:56 +0000 (UTC) Date: Tue, 05 Feb 2019 17:09:56 +0000 To: "commits@qpid.apache.org" Subject: [qpid-proton] branch master updated: PROTON-1990: stay within C++03 constraints MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154938659617.2881.9061223613406922504@gitbox.apache.org> From: cliffjansen@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: qpid-proton X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 165e961c2fdc136c42acd7d248aeb22dfeff990f X-Git-Newrev: aad89ef1b999d378ee595f18c7c6d83c70b26097 X-Git-Rev: aad89ef1b999d378ee595f18c7c6d83c70b26097 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. cliffjansen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/qpid-proton.git The following commit(s) were added to refs/heads/master by this push: new aad89ef PROTON-1990: stay within C++03 constraints aad89ef is described below commit aad89ef1b999d378ee595f18c7c6d83c70b26097 Author: Cliff Jansen AuthorDate: Tue Feb 5 09:08:35 2019 -0800 PROTON-1990: stay within C++03 constraints --- cpp/src/credit_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/credit_test.cpp b/cpp/src/credit_test.cpp index 91e3b52..a57366e 100644 --- a/cpp/src/credit_test.cpp +++ b/cpp/src/credit_test.cpp @@ -184,7 +184,7 @@ class tester : public proton::messaging_handler, public waiter { } void run() { - container_.run(1); // Single threaded to avoid locks and barriers. + container_.run(); // Single threaded to avoid locks and barriers. } void server_available(int available) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org