Author: kgiusti
Date: Tue Sep 20 00:28:55 2011
New Revision: 1172918

URL: http://svn.apache.org/viewvc?rev=1172918&view=rev
Log:
QPID-3346: fix another error found by windows compiler

Modified:
    qpid/branches/qpid-3346/qpid/cpp/src/qpid/broker/MessageAllocator.cpp

Modified: qpid/branches/qpid-3346/qpid/cpp/src/qpid/broker/MessageAllocator.cpp
URL: 
http://svn.apache.org/viewvc/qpid/branches/qpid-3346/qpid/cpp/src/qpid/broker/MessageAllocator.cpp?rev=1172918&r1=1172917&r2=1172918&view=diff
==============================================================================
--- qpid/branches/qpid-3346/qpid/cpp/src/qpid/broker/MessageAllocator.cpp 
(original)
+++ qpid/branches/qpid-3346/qpid/cpp/src/qpid/broker/MessageAllocator.cpp Tue 
Sep 20 00:28:55 2011
@@ -28,7 +28,7 @@
 using namespace qpid::broker;
 
 bool MessageAllocator::nextConsumableMessage( Consumer::shared_ptr&, 
QueuedMessage& next,
-                                              const sys::Mutex::ScopedLock&)
+                                              const 
qpid::sys::Mutex::ScopedLock&)
 {
     Messages& messages(queue->getMessages());
     if (!messages.empty()) {
@@ -39,7 +39,7 @@ bool MessageAllocator::nextConsumableMes
 }
 
 bool MessageAllocator::nextBrowsableMessage( Consumer::shared_ptr& c, 
QueuedMessage& next,
-                                             const sys::Mutex::ScopedLock&)
+                                             const 
qpid::sys::Mutex::ScopedLock&)
 {
     Messages& messages(queue->getMessages());
     if (!messages.empty() && messages.next(c->position, next))
@@ -50,12 +50,12 @@ bool MessageAllocator::nextBrowsableMess
 
 bool MessageAllocator::acquirable( const std::string&,
                                    const QueuedMessage&,
-                                   const sys::Mutex::ScopedLock&)
+                                   const qpid::sys::Mutex::ScopedLock&)
 {
     return true;
 }
 
-void MessageAllocator::query(qpid::types::Variant::Map&, const 
sys::Mutex::ScopedLock&) const
+void MessageAllocator::query(qpid::types::Variant::Map&, const 
qpid::sys::Mutex::ScopedLock&) const
 {
 }
 



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:[email protected]

Reply via email to