summaryrefslogtreecommitdiffstats
path: root/src/trace/pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/trace/pool.h')
-rw-r--r--src/trace/pool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trace/pool.h b/src/trace/pool.h
index 88fd82bcd..b4693d941 100644
--- a/src/trace/pool.h
+++ b/src/trace/pool.h
@@ -62,9 +62,9 @@ class pool {
{
cblock = 0;
size = sizeof(T) > sizeof(void *) ? sizeof(T) : sizeof(void *);
- next = NULL;
+ next = nullptr;
for (int k = 0; k < 64; k++) {
- block[k] = NULL;
+ block[k] = nullptr;
}
}