diff options
author | Alan Conway <aconway@apache.org> | 2009-01-22 20:29:12 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-01-22 20:29:12 +0000 |
commit | 1a14b81c86c49d562486ab2c55a75c564144fa71 (patch) | |
tree | c31be2934c8802cc6e6499bf3fca3590f6637767 /cpp/src/tests/FramingTest.cpp | |
parent | cacc168520f742ae7a45fa4d7198d6958ae5b9a4 (diff) | |
download | qpid-python-1a14b81c86c49d562486ab2c55a75c564144fa71.tar.gz |
Removed BodyHolder: minor performance improvement, opens the way for more efficient memory management.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@736783 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/FramingTest.cpp')
-rw-r--r-- | cpp/src/tests/FramingTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/FramingTest.cpp b/cpp/src/tests/FramingTest.cpp index f82507c0a7..e09ee19bc2 100644 --- a/cpp/src/tests/FramingTest.cpp +++ b/cpp/src/tests/FramingTest.cpp @@ -123,7 +123,7 @@ QPID_AUTO_TEST_CASE(testConnectionRedirectBodyFrame) hosts.add(boost::shared_ptr<FieldValue>(new Str16Value(a))); hosts.add(boost::shared_ptr<FieldValue>(new Str16Value(b))); - AMQFrame in(in_place<ConnectionRedirectBody>(version, a, hosts)); + AMQFrame in((ConnectionRedirectBody(version, a, hosts))); in.setChannel(999); in.encode(wbuff); @@ -138,7 +138,7 @@ QPID_AUTO_TEST_CASE(testMessageCancelBodyFrame) char buffer[1024]; ProtocolVersion version(highestProtocolVersion); Buffer wbuff(buffer, sizeof(buffer)); - AMQFrame in(in_place<MessageCancelBody>(version, "tag")); + AMQFrame in((MessageCancelBody(version, "tag"))); in.setChannel(999); in.encode(wbuff); |