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 | 2a519a01e4a655e4757d83742ba4e8568d72793f (patch) | |
| tree | 033b1c35d0732a46ced7949e8f7a794a79baf699 /cpp/src | |
| parent | 8140a8b753107e003b832ec47ae012094563c748 (diff) | |
| download | qpid-python-2a519a01e4a655e4757d83742ba4e8568d72793f.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; }; |
