diff options
| author | Stephen D. Huston <shuston@apache.org> | 2013-05-02 02:05:50 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2013-05-02 02:05:50 +0000 |
| commit | 25bf1d17fc5c33485c1e23b7d7c1c1d3048fcff3 (patch) | |
| tree | 033b1c35d0732a46ced7949e8f7a794a79baf699 /cpp/src | |
| parent | 259c0326b1595e73eb8ebe94dbb0c9accb528dfb (diff) | |
| download | qpid-python-25bf1d17fc5c33485c1e23b7d7c1c1d3048fcff3.tar.gz | |
Resolve Windows compile error and warnings. NO-JIRA
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1478252 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/broker/RecoverableQueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/RecoverableQueue.h b/cpp/src/qpid/broker/RecoverableQueue.h index 103711d7d5..a76f0b4fe2 100644 --- a/cpp/src/qpid/broker/RecoverableQueue.h +++ b/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; }; |
