Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2014-10-22 05:29:32 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2014-10-24 00:49:58 +0400
commit2d82cdf670d88f2f5acc7d1b759cf0cbb3f99962 (patch)
treea6957d0fa3f6cc76e100ae279e389447b5055029 /src/timer_wrap.cc
parentb2b59febe8bf1d411e7d8faacd23789784aac1f0 (diff)
src: replace NULL with nullptr
Now that we are building with C++11 features enabled, replace use of NULL with nullptr. The benefit of using nullptr is that it can never be confused for an integral type because it does not support implicit conversions to integral types except boolean - unlike NULL, which is defined as a literal `0`.
Diffstat (limited to 'src/timer_wrap.cc')
-rw-r--r--src/timer_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index 01555055320..dfa551d05c5 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -140,7 +140,7 @@ class TimerWrap : public HandleWrap {
Environment* env = wrap->env();
HandleScope handle_scope(env->isolate());
Context::Scope context_scope(env->context());
- wrap->MakeCallback(kOnTimeout, 0, NULL);
+ wrap->MakeCallback(kOnTimeout, 0, nullptr);
}
static void Now(const FunctionCallbackInfo<Value>& args) {