summaryrefslogtreecommitdiff
path: root/src/mongo/util/concurrency/ticketholder.h
diff options
context:
space:
mode:
authorA. Jesse Jiryu Davis <jesse@mongodb.com>2019-06-14 16:42:10 -0400
committerA. Jesse Jiryu Davis <jesse@mongodb.com>2019-06-14 19:23:18 -0400
commit47b380f03e8898f4706ff01fa2be64dfb72e0dba (patch)
treefb3508758c9abd0e297afee43ac847bf5aebcbbb /src/mongo/util/concurrency/ticketholder.h
parentb3c26131f6ab3f919beca658341e737de5d45683 (diff)
downloadmongo-47b380f03e8898f4706ff01fa2be64dfb72e0dba.tar.gz
SERVER-41071 Replace NULL and 0 with nullptr
Diffstat (limited to 'src/mongo/util/concurrency/ticketholder.h')
-rw-r--r--src/mongo/util/concurrency/ticketholder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/util/concurrency/ticketholder.h b/src/mongo/util/concurrency/ticketholder.h
index 51c232bc5d1..8ab3d4a39d9 100644
--- a/src/mongo/util/concurrency/ticketholder.h
+++ b/src/mongo/util/concurrency/ticketholder.h
@@ -118,7 +118,7 @@ class TicketHolderReleaser {
public:
TicketHolderReleaser() {
- _holder = NULL;
+ _holder = nullptr;
}
explicit TicketHolderReleaser(TicketHolder* holder) {
@@ -132,10 +132,10 @@ public:
}
bool hasTicket() const {
- return _holder != NULL;
+ return _holder != nullptr;
}
- void reset(TicketHolder* holder = NULL) {
+ void reset(TicketHolder* holder = nullptr) {
if (_holder) {
_holder->release();
}