diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-08 15:04:07 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-08 15:04:07 +0000 |
commit | 94d67ed2b72e56a60989bc7393efc6a0b6b812c3 (patch) | |
tree | 6fde43aae1e56f99b191166d2872d6e1608fe1b1 /cpp/src/tests/QueueTest.cpp | |
parent | 362d91dd7261b21863f84cd6364d059c25ceeedb (diff) | |
download | qpid-python-94d67ed2b72e56a60989bc7393efc6a0b6b812c3.tar.gz |
QPID-3073: refactor to eliminate locks, malloc, and map insert/remove in receive path.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1079385 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | cpp/src/tests/QueueTest.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/tests/QueueTest.cpp b/cpp/src/tests/QueueTest.cpp index fd30a98ac0..2059727e7b 100644 --- a/cpp/src/tests/QueueTest.cpp +++ b/cpp/src/tests/QueueTest.cpp @@ -88,8 +88,6 @@ intrusive_ptr<Message> create_message(std::string exchange, std::string routingK msg->getFrames().append(method); msg->getFrames().append(header); msg->getFrames().getHeaders()->get<DeliveryProperties>(true)->setRoutingKey(routingKey); - boost::shared_ptr<AsyncCompletion>dc(new DummyCompletion()); - msg->setIngressCompletion(dc); return msg; } |