aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/exec_ctx.h
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-01-03 21:26:23 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2018-01-03 21:26:23 -0800
commit5219f3f4c13ce412312975ec5ce7d80b164a72eb (patch)
treec8c33c1c5ad2c0c2f2bfa87e99f5c5a2f7034fa6 /src/core/lib/iomgr/exec_ctx.h
parentd9c69e1963288ff6fafb930ce55ea612808931f0 (diff)
Missing s/NULL/nullptr
Diffstat (limited to 'src/core/lib/iomgr/exec_ctx.h')
-rw-r--r--src/core/lib/iomgr/exec_ctx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/exec_ctx.h b/src/core/lib/iomgr/exec_ctx.h
index 8f8d518def..5c6007c3c7 100644
--- a/src/core/lib/iomgr/exec_ctx.h
+++ b/src/core/lib/iomgr/exec_ctx.h
@@ -111,7 +111,7 @@ class ExecCtx {
/** Checks if there is work to be done */
bool HasWork() {
- return combiner_data_.active_combiner != NULL ||
+ return combiner_data_.active_combiner != nullptr ||
!grpc_closure_list_empty(closure_list_);
}