summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2017-11-06 15:40:12 +0000
committerTor Egge <Tor.Egge@oath.com>2017-11-06 15:40:12 +0000
commite196f9afeb9465163b96a63d0966f3547ce8ea9e (patch)
tree46c41c69cea592b93334220ac08c0b1257eb3f04
parentca0eb1128e419968060a11505e70ca26f9c4dd03 (diff)
Use nullptr.
-rw-r--r--storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.cpp b/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.cpp
index 07f5834ac63..1e4067eb128 100644
--- a/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.cpp
+++ b/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.cpp
@@ -26,8 +26,8 @@ const uint32_t IdealStateOperation::MAINTENANCE_MESSAGE_TYPES[] =
};
IdealStateOperation::IdealStateOperation(const BucketAndNodes& bucketAndNodes)
- : _manager(NULL),
- _bucketSpace(NULL),
+ : _manager(nullptr),
+ _bucketSpace(nullptr),
_bucketAndNodes(bucketAndNodes),
_ok(true),
_priority(255)