From c912884c11debf57e8c154fba7dbbcae8ea34d90 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/qpid@771021 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/ExchangeRegistry.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cpp/src') diff --git a/cpp/src/qpid/broker/ExchangeRegistry.cpp b/cpp/src/qpid/broker/ExchangeRegistry.cpp index 01f8bbfee6..bb0eec34ba 100644 --- a/cpp/src/qpid/broker/ExchangeRegistry.cpp +++ b/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