summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_collection_catalog_entry.h')
-rw-r--r--src/mongo/db/storage/kv/kv_collection_catalog_entry.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/storage/kv/kv_collection_catalog_entry.h b/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
index cd8643bbcb7..644a00f8943 100644
--- a/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
+++ b/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
@@ -39,11 +39,11 @@
namespace mongo {
class KVCatalog;
-class KVStorageEngineInterface;
+class StorageEngineInterface;
class KVCollectionCatalogEntry final : public BSONCollectionCatalogEntry {
public:
- KVCollectionCatalogEntry(KVStorageEngineInterface* engine,
+ KVCollectionCatalogEntry(StorageEngineInterface* engine,
KVCatalog* catalog,
StringData ns,
StringData ident,
@@ -123,8 +123,8 @@ private:
class AddIndexChange;
class RemoveIndexChange;
- KVStorageEngineInterface* const _engine; // not owned
- KVCatalog* _catalog; // not owned
+ StorageEngineInterface* const _engine; // not owned
+ KVCatalog* _catalog; // not owned
std::string _ident;
std::unique_ptr<RecordStore> _recordStore; // owned
};