diff options
author | James Wahlin <james.wahlin@10gen.com> | 2016-05-18 09:54:15 -0400 |
---|---|---|
committer | James Wahlin <james.wahlin@10gen.com> | 2016-05-19 14:49:25 -0400 |
commit | 47b0f99814f2c78edd0ae9aebf76f2c4bfddcad6 (patch) | |
tree | 42210bdeec16f0839905d913eb59ed70bc9d58f6 /src/mongo/db/ops/update.h | |
parent | 5fb43bea8df4d62c97ad3c4777f773a7c3e032a3 (diff) | |
download | mongo-47b0f99814f2c78edd0ae9aebf76f2c4bfddcad6.tar.gz |
SERVER-23933 Remove OpDebug from ops/update.cpp::update()
Diffstat (limited to 'src/mongo/db/ops/update.h')
-rw-r--r-- | src/mongo/db/ops/update.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mongo/db/ops/update.h b/src/mongo/db/ops/update.h index 06cec7fa90f..ff21054e25a 100644 --- a/src/mongo/db/ops/update.h +++ b/src/mongo/db/ops/update.h @@ -47,10 +47,7 @@ class UpdateDriver; * * Caller must hold the appropriate database locks. */ -UpdateResult update(OperationContext* txn, - Database* db, - const UpdateRequest& request, - OpDebug* opDebug); +UpdateResult update(OperationContext* txn, Database* db, const UpdateRequest& request); /** * takes the from document and returns a new document |