From b9584aeaa3623c6ff1668352a05f507425bec398 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Sun, 3 May 2009 04:04:00 +0000 Subject: Fixed ExchangeRegistry definitions to match changed declarations in previous checkin git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@771021 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/broker/ExchangeRegistry.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'qpid/cpp/src') diff --git a/qpid/cpp/src/qpid/broker/ExchangeRegistry.cpp b/qpid/cpp/src/qpid/broker/ExchangeRegistry.cpp index 01f8bbfee6..bb0eec34ba 100644 --- a/qpid/cpp/src/qpid/broker/ExchangeRegistry.cpp +++ b/qpid/cpp/src/qpid/broker/ExchangeRegistry.cpp @@ -32,15 +32,13 @@ using namespace qpid::sys; using std::pair; using qpid::framing::FieldTable; -pair ExchangeRegistry::declare(const string& name, const string& type) - throw(UnknownExchangeTypeException){ +pair ExchangeRegistry::declare(const string& name, const string& type){ return declare(name, type, false, FieldTable()); } pair ExchangeRegistry::declare(const string& name, const string& type, - bool durable, const FieldTable& args) - throw(UnknownExchangeTypeException){ + bool durable, const FieldTable& args){ RWlock::ScopedWlock locker(lock); ExchangeMap::iterator i = exchanges.find(name); if (i == exchanges.end()) { -- cgit v1.2.1