summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2012-04-23 19:54:21 +0000
committerStephen D. Huston <shuston@apache.org>2012-04-23 19:54:21 +0000
commit813582c0cf24fda9481d0a666be41a9e78b27452 (patch)
tree377f381856e61ec4a6785540907f5b1cb0b89d02 /qpid/cpp/src
parentfa2d517b97721670a0c5bd55276b346e242288ba (diff)
downloadqpid-python-813582c0cf24fda9481d0a666be41a9e78b27452.tar.gz
Added missing externs for Windows builds. NO-JIRA
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1329410 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/QueuedMessage.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/QueuedMessage.h b/qpid/cpp/src/qpid/broker/QueuedMessage.h
index a1435aba42..9d008193a0 100644
--- a/qpid/cpp/src/qpid/broker/QueuedMessage.h
+++ b/qpid/cpp/src/qpid/broker/QueuedMessage.h
@@ -22,6 +22,7 @@
#define _QueuedMessage_
#include "qpid/broker/Message.h"
+#include "BrokerImportExport.h"
#include <iosfwd>
namespace qpid {
@@ -48,7 +49,7 @@ inline bool operator<(const QueuedMessage& a, const QueuedMessage& b) {
return a.position < b.position;
}
-std::ostream& operator<<(std::ostream&, const QueuedMessage&);
+QPID_BROKER_EXTERN std::ostream& operator<<(std::ostream&, const QueuedMessage&);
}}