From 589a5c169ced8f6e9ddcd3d182ae1b75db6b7d79 Mon Sep 17 00:00:00 2001 From: Maria van Keulen Date: Tue, 7 Mar 2017 12:00:08 -0500 Subject: SERVER-27938 Rename all OperationContext variables to opCtx This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo. --- src/mongo/db/catalog/drop_indexes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mongo/db/catalog/drop_indexes.h') diff --git a/src/mongo/db/catalog/drop_indexes.h b/src/mongo/db/catalog/drop_indexes.h index 931fa348019..67f4b5a64c2 100644 --- a/src/mongo/db/catalog/drop_indexes.h +++ b/src/mongo/db/catalog/drop_indexes.h @@ -38,7 +38,7 @@ class OperationContext; * Drops the index from collection "ns" that matches the "idxDescriptor" and populates * "result" with some statistics about the dropped index. */ -Status dropIndexes(OperationContext* txn, +Status dropIndexes(OperationContext* opCtx, const NamespaceString& ns, const BSONObj& idxDescriptor, BSONObjBuilder* result); -- cgit v1.2.1