diff options
author | Gordon Sim <gsim@apache.org> | 2008-05-29 12:47:52 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-05-29 12:47:52 +0000 |
commit | 02cc8f3136bad84d0b50039cc2741603902cf0b7 (patch) | |
tree | 709ba21a2963cab01d31b27f97c8126662300181 /qpid/cpp | |
parent | 08409e2e222164b4595ebbb6e4df144a44462d25 (diff) | |
download | qpid-python-02cc8f3136bad84d0b50039cc2741603902cf0b7.tar.gz |
Correct declarations to be the same as definitions.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@661323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r-- | qpid/cpp/src/qpid/broker/Exchange.h | 2 | ||||
-rw-r--r-- | qpid/cpp/src/qpid/broker/QueueRegistry.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/broker/Exchange.h b/qpid/cpp/src/qpid/broker/Exchange.h index 9b18129857..ccd74299f8 100644 --- a/qpid/cpp/src/qpid/broker/Exchange.h +++ b/qpid/cpp/src/qpid/broker/Exchange.h @@ -56,7 +56,7 @@ namespace qpid { const framing::FieldTable args; management::Binding::shared_ptr mgmtBinding; - Binding(const std::string& key, const Queue::shared_ptr queue, Exchange* parent = 0, + Binding(const std::string& key, Queue::shared_ptr queue, Exchange* parent = 0, framing::FieldTable args = framing::FieldTable ()); ~Binding (); management::ManagementObject::shared_ptr GetManagementObject () const; diff --git a/qpid/cpp/src/qpid/broker/QueueRegistry.h b/qpid/cpp/src/qpid/broker/QueueRegistry.h index 60da0619f4..f7be1c551a 100644 --- a/qpid/cpp/src/qpid/broker/QueueRegistry.h +++ b/qpid/cpp/src/qpid/broker/QueueRegistry.h @@ -48,7 +48,7 @@ class QueueRegistry{ * was created by this declare call false if it already existed. */ std::pair<Queue::shared_ptr, bool> declare(const string& name, bool durable = false, bool autodelete = false, - const OwnershipToken* const owner = 0); + const OwnershipToken* owner = 0); /** * Destroy the named queue. |