summaryrefslogtreecommitdiff
path: root/qpid/cpp/tests/InProcessBroker.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-29 22:49:06 +0000
committerAlan Conway <aconway@apache.org>2007-03-29 22:49:06 +0000
commit674bde07b20cba615b704fb9480b196dd475f53e (patch)
tree74a27fec70680fc22b006f78cd7f29dcc94f7c5e /qpid/cpp/tests/InProcessBroker.h
parent08aa59a733f770e6505ce861d717170aaa343329 (diff)
downloadqpid-python-674bde07b20cba615b704fb9480b196dd475f53e.tar.gz
* tests/InProcessBroker: Fix embarassing bug in previous merge
* tests/.vg-supp: Updated supressions - down to only 3 leaks! git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@523865 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/tests/InProcessBroker.h')
-rw-r--r--qpid/cpp/tests/InProcessBroker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/tests/InProcessBroker.h b/qpid/cpp/tests/InProcessBroker.h
index 56bce7d54a..2882ab28e8 100644
--- a/qpid/cpp/tests/InProcessBroker.h
+++ b/qpid/cpp/tests/InProcessBroker.h
@@ -120,9 +120,9 @@ class InProcessBroker : public client::Connector {
};
std::ostream& operator<<(
- std::ostream& out, const InProcessBroker::TaggedFrame& frame)
+ std::ostream& out, const InProcessBroker::TaggedFrame& tf)
{
- return out << (frame.fromBroker()? "BROKER: ":"CLIENT: ") << frame;
+ return out << (tf.fromBroker()? "BROKER: ":"CLIENT: ") << *tf.frame;
}
std::ostream& operator<<(