From ba216692a2c1779dcf631f1e676ec9297aaf22e2 Mon Sep 17 00:00:00 2001 From: Benety Goh Date: Mon, 10 Dec 2018 14:14:27 -0500 Subject: SERVER-38330 merge MultiIndexBlock and MultiIndexBlockImpl --- src/mongo/db/commands/create_indexes.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mongo/db/commands/create_indexes.cpp') diff --git a/src/mongo/db/commands/create_indexes.cpp b/src/mongo/db/commands/create_indexes.cpp index ea461d2a5c3..9dcf9ebd467 100644 --- a/src/mongo/db/commands/create_indexes.cpp +++ b/src/mongo/db/commands/create_indexes.cpp @@ -42,7 +42,6 @@ #include "mongo/db/catalog/database_holder.h" #include "mongo/db/catalog/index_key_validate.h" #include "mongo/db/catalog/multi_index_block.h" -#include "mongo/db/catalog/multi_index_block_impl.h" #include "mongo/db/client.h" #include "mongo/db/command_generic_argument.h" #include "mongo/db/commands.h" @@ -360,7 +359,7 @@ public: dbProfilingLevel); - MultiIndexBlockImpl indexer(opCtx, collection); + MultiIndexBlock indexer(opCtx, collection); indexer.allowBackgroundBuilding(); indexer.allowInterruption(); -- cgit v1.2.1