]> 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 f8fd207912458ff636462310ce0d7ca5e51c533d..05dca534577697d3213fdc41c9b96d95e9624eb2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2022 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
@@ -9,14 +9,14 @@
 #ifndef SQUID_STOREIOBUFFER_H
 #define SQUID_STOREIOBUFFER_H
 
+#include "base/Range.h"
 #include "MemBuf.h"
-#include "Range.h"
 
 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) {