summaryrefslogtreecommitdiff
path: root/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
commit060c7af39f60a9ea72b29ed3a603fc0ee236dd05 (patch)
treece6d6485cf7580407c84cc3a1190f75a867faf11 /cpp/tests/InProcessBroker.h
parent1a23d52070195a9c8de98dd4af6e19f42051f1a5 (diff)
downloadqpid-python-060c7af39f60a9ea72b29ed3a603fc0ee236dd05.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/qpid@523865 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/InProcessBroker.h')
-rw-r--r--cpp/tests/InProcessBroker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/tests/InProcessBroker.h b/cpp/tests/InProcessBroker.h
index 56bce7d54a..2882ab28e8 100644
--- a/cpp/tests/InProcessBroker.h
+++ b/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<<(