]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/StoreIOBuffer.h
Maintenance: Removed most NULLs using modernize-use-nullptr (#1075)
[thirdparty/squid.git] / src / StoreIOBuffer.h
index 859eda6d340211774ba8582f978cfcceeaea5fb5..05dca534577697d3213fdc41c9b96d95e9624eb2 100644 (file)
@@ -16,7 +16,7 @@ class StoreIOBuffer
 {
 
 public:
-    StoreIOBuffer():length(0), offset (0), data (NULL) {flags.error = 0;}
+    StoreIOBuffer():length(0), offset (0), data (nullptr) {flags.error = 0;}
 
     StoreIOBuffer(size_t aLength, int64_t anOffset, char *someData) :
         length (aLength), offset (anOffset), data (someData) {