summaryrefslogtreecommitdiff
path: root/cpp/broker/inc/Exchange.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/broker/inc/Exchange.h')
-rw-r--r--cpp/broker/inc/Exchange.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/broker/inc/Exchange.h b/cpp/broker/inc/Exchange.h
index 4066f5ac20..1fdc00fae5 100644
--- a/cpp/broker/inc/Exchange.h
+++ b/cpp/broker/inc/Exchange.h
@@ -27,7 +27,7 @@ namespace broker {
class Exchange{
const std::string name;
public:
- explicit Exchange(const std::string& name) : name(name) {}
+ explicit Exchange(const std::string& _name) : name(_name) {}
virtual ~Exchange(){}
std::string getName() { return name; }
virtual void bind(Queue::shared_ptr queue, const string& routingKey, qpid::framing::FieldTable* args) = 0;