summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2013-05-02 02:05:50 +0000
committerStephen D. Huston <shuston@apache.org>2013-05-02 02:05:50 +0000
commitf0c335abaebf154284ed5560dcdbc33210a90efc (patch)
tree2ccdc8268f04a4d91b1d1fbcee2cc77c03835a9d
parent8c7c5e046389f9c346162855489c2d7b5162cd54 (diff)
downloadqpid-python-f0c335abaebf154284ed5560dcdbc33210a90efc.tar.gz
Resolve Windows compile error and warnings. NO-JIRA
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1478252 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/broker/RecoverableQueue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/broker/RecoverableQueue.h b/qpid/cpp/src/qpid/broker/RecoverableQueue.h
index 103711d7d5..a76f0b4fe2 100644
--- a/qpid/cpp/src/qpid/broker/RecoverableQueue.h
+++ b/qpid/cpp/src/qpid/broker/RecoverableQueue.h
@@ -29,7 +29,7 @@ namespace qpid {
namespace broker {
class ExternalQueueStore;
-class QueueSettings;
+struct QueueSettings;
/**
* The interface through which messages are added back to queues on
@@ -52,7 +52,7 @@ public:
virtual void setExternalQueueStore(ExternalQueueStore* inst) = 0;
virtual ExternalQueueStore* getExternalQueueStore() const = 0;
virtual const QueueSettings& getSettings() const = 0;
- virtual void addArgument(const std::string& key, const types::Variant& value) = 0;
+ virtual void addArgument(const std::string& key, const qpid::types::Variant& value) = 0;
};