summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-30 23:22:52 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-30 23:22:52 +0000
commitcb1bd5b87e2eeecf163dd2ee79efb2d7895a6ebc (patch)
tree989dae79995900cdcc36343ccd88dca5df6c9497 /qpid/cpp
parentff55490f1eedf7cdf848bfd21c985f5db0b3d2e5 (diff)
downloadqpid-python-cb1bd5b87e2eeecf163dd2ee79efb2d7895a6ebc.tar.gz
Fix namespace reference usage to work on Windows
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@709286 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/broker/Queue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/broker/Queue.cpp b/qpid/cpp/src/qpid/broker/Queue.cpp
index 388b2d77dd..84f092bd6a 100644
--- a/qpid/cpp/src/qpid/broker/Queue.cpp
+++ b/qpid/cpp/src/qpid/broker/Queue.cpp
@@ -749,7 +749,7 @@ void Queue::setPersistenceId(uint64_t _persistenceId) const
persistenceId = _persistenceId;
}
-void Queue::encode(framing::Buffer& buffer) const
+void Queue::encode(Buffer& buffer) const
{
buffer.putShortString(name);
buffer.put(settings);
@@ -760,7 +760,7 @@ uint32_t Queue::encodedSize() const
return name.size() + 1/*short string size octet*/ + settings.encodedSize();
}
-Queue::shared_ptr Queue::decode(QueueRegistry& queues, framing::Buffer& buffer)
+Queue::shared_ptr Queue::decode(QueueRegistry& queues, Buffer& buffer)
{
string name;
buffer.getShortString(name);