summaryrefslogtreecommitdiffstats
path: root/messagebus/src/tests/routing/routing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'messagebus/src/tests/routing/routing.cpp')
-rw-r--r--messagebus/src/tests/routing/routing.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/messagebus/src/tests/routing/routing.cpp b/messagebus/src/tests/routing/routing.cpp
index 8fd2c3951e4..506d003a8b7 100644
--- a/messagebus/src/tests/routing/routing.cpp
+++ b/messagebus/src/tests/routing/routing.cpp
@@ -1,4 +1,5 @@
// 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/messagebus/emptyreply.h>
#include <vespa/messagebus/errorcode.h>
#include <vespa/messagebus/messagebus.h>
@@ -14,8 +15,8 @@
#include <vespa/messagebus/testlib/testserver.h>
#include <vespa/vespalib/component/vtag.h>
#include <vespa/vespalib/testkit/testapp.h>
-
#include <vespa/log/log.h>
+
LOG_SETUP("routing_test");
using namespace mbus;
@@ -413,9 +414,12 @@ private:
public:
MyPolicy(const MyPolicyFactory &parent) :
_parent(parent)
- {}
+ {
+ // empty
+ }
- void select(RoutingContext &ctx) override
+ virtual void
+ select(RoutingContext &ctx) override
{
if (!_parent._selectRoute.empty()) {
ctx.addChild(Route::parse(_parent._selectRoute));
@@ -429,8 +433,9 @@ public:
throw TestException();
}
}
-
- void merge(RoutingContext &ctx) override
+
+ virtual void
+ merge(RoutingContext &ctx) override
{
if (_parent._mergeError != ErrorCode::NONE) {
Reply::UP reply(new EmptyReply());