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/commands/index_filter_commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mongo/db/commands/index_filter_commands.cpp') diff --git a/src/mongo/db/commands/index_filter_commands.cpp b/src/mongo/db/commands/index_filter_commands.cpp index 2fabe66c892..e1fdc732d2e 100644 --- a/src/mongo/db/commands/index_filter_commands.cpp +++ b/src/mongo/db/commands/index_filter_commands.cpp @@ -113,7 +113,7 @@ using std::vector; using std::unique_ptr; IndexFilterCommand::IndexFilterCommand(const string& name, const string& helpText) - : Command(name), helpText(helpText) {} + : BasicCommand(name), helpText(helpText) {} bool IndexFilterCommand::run(OperationContext* opCtx, const string& dbname, -- cgit v1.2.1