]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/DescriptorSet.cc
Maintenance: Removed most NULLs using modernize-use-nullptr (#1075)
[thirdparty/squid.git] / src / DescriptorSet.cc
index 95d9dcba79812acf3da07ed3199d64652722ac42..e57e90a05dd607a71ac143e3669330b3f01909d1 100644 (file)
@@ -13,7 +13,7 @@
 #include "globals.h" /* for Squid_MaxFD */
 
 // pre-allocates descriptor store and index for Squid_MaxFD descriptors
-DescriptorSet::DescriptorSet(): descriptors_(NULL), index_(NULL),
+DescriptorSet::DescriptorSet(): descriptors_(nullptr), index_(nullptr),
     capacity_(0), size_(0)
 {
     // we allocate once and never realloc, at least for now