From 1f21d889f89cf1338ff198264d63b029314eef7a Mon Sep 17 00:00:00 2001 From: Mathias Stearn Date: Thu, 22 Jun 2017 15:25:37 -0400 Subject: SERVER-29731 convert all direct subclasses of Command to BasicCommand --- src/mongo/db/repl/repl_set_command.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mongo/db/repl/repl_set_command.h') diff --git a/src/mongo/db/repl/repl_set_command.h b/src/mongo/db/repl/repl_set_command.h index 1997b2b29a3..fd43ad1c8b2 100644 --- a/src/mongo/db/repl/repl_set_command.h +++ b/src/mongo/db/repl/repl_set_command.h @@ -43,9 +43,9 @@ namespace repl { /** * Base class for repl set commands. */ -class ReplSetCommand : public Command { +class ReplSetCommand : public BasicCommand { protected: - ReplSetCommand(const char* s) : Command(s) {} + ReplSetCommand(const char* s) : BasicCommand(s) {} bool slaveOk() const override { return true; -- cgit v1.2.1