summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2011-06-17 18:35:48 +0000
committerAlan Conway <aconway@apache.org>2011-06-17 18:35:48 +0000
commit607d6f916f0c4b1d3fa0c739c374527367c9b400 (patch)
tree16612178fe7099481bfbc14664bddb52a37f6731 /cpp/src/qpid/broker
parent409e4e54ad318816b30fcaed44d2688d644edd46 (diff)
downloadqpid-python-607d6f916f0c4b1d3fa0c739c374527367c9b400.tar.gz
NO-JIRA: Fix compile error on windows due to assigning an AtomicValue.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1136971 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker')
-rw-r--r--cpp/src/qpid/broker/Queue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp
index cfcd18155e..42923567a2 100644
--- a/cpp/src/qpid/broker/Queue.cpp
+++ b/cpp/src/qpid/broker/Queue.cpp
@@ -1204,7 +1204,7 @@ const Broker* Queue::getBroker()
}
void Queue::setDequeueSincePurge(uint32_t value) {
- dequeueSincePurge = AtomicValue<uint32_t>(value);
+ dequeueSincePurge = value;
}