From 1a14b81c86c49d562486ab2c55a75c564144fa71 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 22 Jan 2009 20:29:12 +0000 Subject: 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 --- cpp/src/tests/FramingTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/tests/FramingTest.cpp') 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(new Str16Value(a))); hosts.add(boost::shared_ptr(new Str16Value(b))); - AMQFrame in(in_place(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(version, "tag")); + AMQFrame in((MessageCancelBody(version, "tag"))); in.setChannel(999); in.encode(wbuff); -- cgit v1.2.1