summaryrefslogtreecommitdiff
path: root/src/mongo/db/clientcursor.h
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-04-06 17:07:02 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-04-07 11:28:49 -0400
commit6febdbaf542464bab747e3ab3ba49ad7b38acd8f (patch)
treeca13cd69929179dc3927cac9895bff3e3fc74787 /src/mongo/db/clientcursor.h
parent7dc9a83e8be3446551297e746dad4f6d74b7dca2 (diff)
downloadmongo-6febdbaf542464bab747e3ab3ba49ad7b38acd8f.tar.gz
SERVER-17817 Make CurOp a decoration of ClientBasic, not a member of Client.
Diffstat (limited to 'src/mongo/db/clientcursor.h')
-rw-r--r--src/mongo/db/clientcursor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/clientcursor.h b/src/mongo/db/clientcursor.h
index c5b8629d675..554fb0e7076 100644
--- a/src/mongo/db/clientcursor.h
+++ b/src/mongo/db/clientcursor.h
@@ -135,7 +135,7 @@ namespace mongo {
// Replication-related stuff. TODO: Document and clean.
//
- void updateSlaveLocation(OperationContext* txn, CurOp& curop);
+ void updateSlaveLocation(OperationContext* txn);
void slaveReadTill( const OpTime& t ) { _slaveReadTill = t; }
/** Just for testing. */
OpTime getSlaveReadTill() const { return _slaveReadTill; }