aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src/tests/replygate
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-04-05 20:59:01 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-04-23 13:31:24 +0200
commit40bddbaac34ece542a057aa97eb63db6f1c5775e (patch)
tree5de3547eee329ed1b064722a697d2cda9eb53476 /messagebus/src/tests/replygate
parentb57308e4a134fb6139d2cb52a031d3e7185f16cf (diff)
Including storage now builds fine with override enforcement.
Diffstat (limited to 'messagebus/src/tests/replygate')
-rw-r--r--messagebus/src/tests/replygate/replygate.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/messagebus/src/tests/replygate/replygate.cpp b/messagebus/src/tests/replygate/replygate.cpp
index d190f278be4..8f784495866 100644
--- a/messagebus/src/tests/replygate/replygate.cpp
+++ b/messagebus/src/tests/replygate/replygate.cpp
@@ -1,7 +1,4 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
-#include <vespa/log/log.h>
-LOG_SETUP("replygate_test");
#include <vespa/messagebus/emptyreply.h>
#include <vespa/messagebus/imessagehandler.h>
@@ -44,7 +41,7 @@ struct MySender : public IMessageHandler
{
// giving a sync reply here is against the API contract, but it is
// ok for testing.
- virtual void handleMessage(Message::UP msg) override {
+ void handleMessage(Message::UP msg) override {
Reply::UP reply(new MyReply());
msg->swapState(*reply);
IReplyHandler &handler = reply->getCallStack().pop(*reply);