diff options
Diffstat (limited to 'cpp/tests/InProcessBroker.h')
-rw-r--r-- | cpp/tests/InProcessBroker.h | 4 |
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<<( |