Refer to nullptr not NULL
[folly.git] / folly / ConcurrentSkipList.h
index 7d5cb9589c478fa2bcdf916a623d9149bf0fab10..8b06f3317db976f165676d407dd755a912b00d95 100644 (file)
@@ -235,7 +235,7 @@ class ConcurrentSkipList {
 
       // if found, succs[0..foundLayer] need to point to the cached foundNode,
       // as foundNode might be deleted at the same time thus pred->skip() can
-      // return NULL or another node.
+      // return nullptr or another node.
       succs[layer] = foundNode ? foundNode : node;
     }
     return foundLayer;