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 9D62418B5D for ; Fri, 23 Oct 2015 14:37:24 +0000 (UTC) Received: (qmail 17969 invoked by uid 500); 23 Oct 2015 14:37:12 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 17869 invoked by uid 500); 23 Oct 2015 14:37:11 -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 11647 invoked by uid 99); 23 Oct 2015 14:36:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Oct 2015 14:36:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 383EEE3965; Fri, 23 Oct 2015 14:36:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aconway@apache.org To: commits@qpid.apache.org Date: Fri, 23 Oct 2015 14:36:41 -0000 Message-Id: <51a401c340b247daa050f3347914c560@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [39/50] [abbrv] qpid-proton git commit: NO-JIRA: c++: fix compile error on older c++ compilers (noticed on gcc 4.7) NO-JIRA: c++: fix compile error on older c++ compilers (noticed on gcc 4.7) Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/a16c58a5 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/a16c58a5 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/a16c58a5 Branch: refs/heads/go1 Commit: a16c58a59c2a5504ecd556dd397b7d28cc68dbd4 Parents: 6192c55 Author: Alan Conway Authored: Wed Oct 21 10:03:02 2015 -0400 Committer: Alan Conway Committed: Wed Oct 21 10:03:02 2015 -0400 ---------------------------------------------------------------------- proton-c/bindings/cpp/include/proton/endpoint.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/a16c58a5/proton-c/bindings/cpp/include/proton/endpoint.hpp ---------------------------------------------------------------------- diff --git a/proton-c/bindings/cpp/include/proton/endpoint.hpp b/proton-c/bindings/cpp/include/proton/endpoint.hpp index e31fce6..5ed2646 100644 --- a/proton-c/bindings/cpp/include/proton/endpoint.hpp +++ b/proton-c/bindings/cpp/include/proton/endpoint.hpp @@ -98,7 +98,8 @@ template class range { ///@ An iterator for a range of sessions. class session_iterator : public iter_base { public: - explicit session_iterator(session* p = 0, endpoint::state s = 0) : iter_base(p, s) {} + explicit session_iterator(session* p = 0, endpoint::state s = 0) : + iter_base(p, s) {} private: PN_CPP_EXTERN void advance(); friend class iter_base; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org