diff options
author | Alan Conway <aconway@apache.org> | 2006-12-19 17:55:16 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-12-19 17:55:16 +0000 |
commit | 5285b7f61ea48a53c1997f3910b687be582f3537 (patch) | |
tree | eb49c9029b408a4787ca014b8423e52de0e864d6 /qpid/cpp/tests/FramingTest.cpp | |
parent | 83dfcd846205e21f90639d23078b718bfbbe2dc4 (diff) | |
download | qpid-python-5285b7f61ea48a53c1997f3910b687be582f3537.tar.gz |
* cpp/gen/Makefile.am: fixed generated code dependencies.
* *Channel,SessionHandlerImpl,FramingTest: added FieldTable argument
to consume() to conform to updated XML.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@488745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/tests/FramingTest.cpp')
-rw-r--r-- | qpid/cpp/tests/FramingTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/tests/FramingTest.cpp b/qpid/cpp/tests/FramingTest.cpp index edc62b6187..efdd84c2c4 100644 --- a/qpid/cpp/tests/FramingTest.cpp +++ b/qpid/cpp/tests/FramingTest.cpp @@ -106,7 +106,8 @@ class FramingTest : public CppUnit::TestCase { std::string q = "queue"; std::string t = "tag"; - BasicConsumeBody in(v, 0, q, t, false, true, false, false); + BasicConsumeBody in(v, 0, q, t, false, true, false, false, + FieldTable()); in.encodeContent(buffer); buffer.flip(); BasicConsumeBody out(v); |