summaryrefslogtreecommitdiff
path: root/src/node_native_module.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_native_module.cc')
-rw-r--r--src/node_native_module.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_native_module.cc b/src/node_native_module.cc
index 662aad31d5..2d3769ebf5 100644
--- a/src/node_native_module.cc
+++ b/src/node_native_module.cc
@@ -270,7 +270,7 @@ MaybeLocal<Function> NativeModuleLoader::LookupAndCompile(
// Generate new cache for next compilation
std::unique_ptr<ScriptCompiler::CachedData> new_cached_data(
ScriptCompiler::CreateCodeCacheForFunction(fun));
- CHECK_NE(new_cached_data, nullptr);
+ CHECK_NOT_NULL(new_cached_data);
// The old entry should've been erased by now so we can just emplace
code_cache_.emplace(id, std::move(new_cached_data));