diff options
Diffstat (limited to 'cpp/lib/broker/TopicExchange.cpp')
-rw-r--r-- | cpp/lib/broker/TopicExchange.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/lib/broker/TopicExchange.cpp b/cpp/lib/broker/TopicExchange.cpp index 3ebb3c8c56..796d3cea02 100644 --- a/cpp/lib/broker/TopicExchange.cpp +++ b/cpp/lib/broker/TopicExchange.cpp @@ -19,7 +19,6 @@ * */ #include <TopicExchange.h> -#include <ExchangeBinding.h> #include <algorithm> using namespace qpid::broker; @@ -118,11 +117,10 @@ bool TopicPattern::match(const Tokens& target) const TopicExchange::TopicExchange(const string& _name) : Exchange(_name) { } -void TopicExchange::bind(Queue::shared_ptr queue, const string& routingKey, const FieldTable* args){ +void TopicExchange::bind(Queue::shared_ptr queue, const string& routingKey, const FieldTable* /*args*/){ Monitor::ScopedLock l(lock); TopicPattern routingPattern(routingKey); bindings[routingPattern].push_back(queue); - queue->bound(new ExchangeBinding(this, queue, routingKey, args)); } void TopicExchange::unbind(Queue::shared_ptr queue, const string& routingKey, const FieldTable* /*args*/){ |