Repository: qpid-proton Updated Branches: refs/heads/master 7fbecf25f -> 0a34741dc
NO-JIRA: Remove WIP for previous fix (embarrassing) Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/0a34741d Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/0a34741d Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/0a34741d Branch: refs/heads/master Commit: 0a34741dcd085e700652f06b1db2e7cf9b514a4a Parents: 7fbecf2 Author: Andrew Stitcher <[email protected]> Authored: Thu Jan 28 15:55:17 2016 -0500 Committer: Andrew Stitcher <[email protected]> Committed: Thu Jan 28 15:55:17 2016 -0500 ---------------------------------------------------------------------- proton-c/bindings/cpp/include/proton/connection.hpp | 2 -- proton-c/bindings/cpp/include/proton/link.hpp | 2 -- proton-c/bindings/cpp/include/proton/session.hpp | 2 -- 3 files changed, 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0a34741d/proton-c/bindings/cpp/include/proton/connection.hpp ---------------------------------------------------------------------- diff --git a/proton-c/bindings/cpp/include/proton/connection.hpp b/proton-c/bindings/cpp/include/proton/connection.hpp index e127573..75c7338 100644 --- a/proton-c/bindings/cpp/include/proton/connection.hpp +++ b/proton-c/bindings/cpp/include/proton/connection.hpp @@ -42,8 +42,6 @@ class connection : public object<pn_connection_t>, public endpoint { public: /// @cond INTERNAL connection(pn_connection_t* c=0) : object<pn_connection_t>(c) {} - //connection(const connection& c) : object<pn_connection_t>(c.pn_object()) {} - //connection& operator=(const connection& c) = default; /// @endcond /// Get the state of this connection. http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0a34741d/proton-c/bindings/cpp/include/proton/link.hpp ---------------------------------------------------------------------- diff --git a/proton-c/bindings/cpp/include/proton/link.hpp b/proton-c/bindings/cpp/include/proton/link.hpp index 1301ecb..1852c61 100644 --- a/proton-c/bindings/cpp/include/proton/link.hpp +++ b/proton-c/bindings/cpp/include/proton/link.hpp @@ -44,8 +44,6 @@ class link : public object<pn_link_t> , public endpoint { public: /// @cond INTERNAL link(pn_link_t* l=0) : object<pn_link_t>(l) {} - //link(const link& l) : object<pn_link_t>(l.pn_object()) {} - //link& operator=(const link& l) = default; /// @endcond // Endpoint behaviours http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0a34741d/proton-c/bindings/cpp/include/proton/session.hpp ---------------------------------------------------------------------- diff --git a/proton-c/bindings/cpp/include/proton/session.hpp b/proton-c/bindings/cpp/include/proton/session.hpp index c51acc1..a16fbe3 100644 --- a/proton-c/bindings/cpp/include/proton/session.hpp +++ b/proton-c/bindings/cpp/include/proton/session.hpp @@ -44,8 +44,6 @@ class session : public object<pn_session_t>, public endpoint public: /// @cond INTERNAL session(pn_session_t* s=0) : object<pn_session_t>(s) {} - //session(const session& s) : object<pn_session_t>(s.pn_object()) {} - //session& operator=(const session& s) = default; /// @endcond // Endpoint behaviours --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
