summaryrefslogtreecommitdiff
path: root/src/mongo/db/dbdirectclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/dbdirectclient.h')
-rw-r--r--src/mongo/db/dbdirectclient.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/dbdirectclient.h b/src/mongo/db/dbdirectclient.h
index ae348ab93bd..c700baf3d8f 100644
--- a/src/mongo/db/dbdirectclient.h
+++ b/src/mongo/db/dbdirectclient.h
@@ -62,7 +62,7 @@ public:
Query query,
int nToReturn = 0,
int nToSkip = 0,
- const BSONObj* fieldsToReturn = 0,
+ const BSONObj* fieldsToReturn = nullptr,
int queryOptions = 0,
int batchSize = 0);
@@ -77,9 +77,9 @@ public:
virtual bool call(Message& toSend,
Message& response,
bool assertOk = true,
- std::string* actualServer = 0);
+ std::string* actualServer = nullptr);
- virtual void say(Message& toSend, bool isRetry = false, std::string* actualServer = 0);
+ virtual void say(Message& toSend, bool isRetry = false, std::string* actualServer = nullptr);
virtual unsigned long long count(const std::string& ns,
const BSONObj& query = BSONObj(),