summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2020-12-04 14:14:52 +0000
committerGeir Storli <geirst@verizonmedia.com>2020-12-04 14:14:52 +0000
commitfe309bdc1b24e64ca9de24af663e8dc04fd52f61 (patch)
treea36ab85aef8762a7ff1b589642f9ccb7f900f173
parent3c8d867abe551e61e0f64f24f06af3d55c15520b (diff)
Remove explicit.
-rw-r--r--storage/src/vespa/storage/distributor/externaloperationhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/vespa/storage/distributor/externaloperationhandler.cpp b/storage/src/vespa/storage/distributor/externaloperationhandler.cpp
index 5d2189bdb59..5fe5e51202a 100644
--- a/storage/src/vespa/storage/distributor/externaloperationhandler.cpp
+++ b/storage/src/vespa/storage/distributor/externaloperationhandler.cpp
@@ -32,8 +32,8 @@ class DirectDispatchSender : public DistributorMessageSender {
DistributorNodeContext& _node_ctx;
NonTrackingMessageSender& _msg_sender;
public:
- explicit DirectDispatchSender(DistributorNodeContext& node_ctx,
- NonTrackingMessageSender& msg_sender)
+ DirectDispatchSender(DistributorNodeContext& node_ctx,
+ NonTrackingMessageSender& msg_sender)
: _node_ctx(node_ctx),
_msg_sender(msg_sender)
{}