You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by as...@apache.org on 2016/04/28 02:48:12 UTC

[4/6] qpid-proton git commit: PROTON-1153: [C++ binding] Remove unused reactor accessor from container

PROTON-1153: [C++ binding] Remove unused reactor accessor from container


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/b7d22d75
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/b7d22d75
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/b7d22d75

Branch: refs/heads/master
Commit: b7d22d75a199a4d7c3028491923fb92657a90493
Parents: 25984b8
Author: Andrew Stitcher <as...@apache.org>
Authored: Wed Apr 27 03:44:53 2016 -0400
Committer: Andrew Stitcher <as...@apache.org>
Committed: Wed Apr 27 17:58:40 2016 -0400

----------------------------------------------------------------------
 proton-c/bindings/cpp/include/proton/container.hpp | 3 ---
 proton-c/bindings/cpp/src/container.cpp            | 2 --
 2 files changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/b7d22d75/proton-c/bindings/cpp/include/proton/container.hpp
----------------------------------------------------------------------
diff --git a/proton-c/bindings/cpp/include/proton/container.hpp b/proton-c/bindings/cpp/include/proton/container.hpp
index 22f4c08..cf7f735 100644
--- a/proton-c/bindings/cpp/include/proton/container.hpp
+++ b/proton-c/bindings/cpp/include/proton/container.hpp
@@ -135,9 +135,6 @@ class container {
 
     /// @cond INTERNAL
   private:
-    /// The reactor associated with this container.
-    class reactor reactor() const;
-
     internal::pn_unique_ptr<container_impl> impl_;
 
     friend class connector;

http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/b7d22d75/proton-c/bindings/cpp/src/container.cpp
----------------------------------------------------------------------
diff --git a/proton-c/bindings/cpp/src/container.cpp b/proton-c/bindings/cpp/src/container.cpp
index de55655..e1ca05f 100644
--- a/proton-c/bindings/cpp/src/container.cpp
+++ b/proton-c/bindings/cpp/src/container.cpp
@@ -57,8 +57,6 @@ connection container::connect(const url &host, const connection_options &opts) {
     return impl_->connect(host, opts);
 }
 
-reactor container::reactor() const { return impl_->reactor_; }
-
 std::string container::id() const { return impl_->id_; }
 
 void container::run() { impl_->reactor_.run(); }


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