Replace NULL with nullptr
[libcds.git] / cds / opt / value_cleaner.h
index 6dd8e0b83880e65b3906d26d39b5c2841591b35d..560498d2701536b8983e785053caa9d64c8c3acd 100644 (file)
@@ -12,7 +12,7 @@ namespace cds { namespace opt {
         The cleaner is a functor called when an item is removed from a container.
         Note, the cleaner should not delete (deallocate) the value \p val passed in.
         However, if the \p value_type type is a structure that contains dynamically allocated
-        field(s), the cleaning functor may deallocate it and iniitalize to default value (usually, \p NULL).
+        field(s), the cleaning functor may deallocate it and iniitalize to default value (usually, \p nullptr).
 
         The interface for type \p value_type is:
         \code