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:
authorlegendecas <legendecas@gmail.com>2020-03-06 07:40:10 +0300
committerAnna Henningsen <anna@addaleax.net>2020-03-09 14:55:41 +0300
commite70705c0f18a9317e33dcdd3189a5cb4c553a4cd (patch)
treea1fcdfb278beb13c8007626b3fdfd73221a74088 /src/node_watchdog.cc
parentc1e672595f230d7e41ede5a96d778ada1c1e71ac (diff)
src: add missing namespace using statements in node_watchdog.h
Although these `using`s can derived from other header files, it will be better to be self-contained. PR-URL: https://github.com/nodejs/node/pull/32117 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/node_watchdog.cc')
-rw-r--r--src/node_watchdog.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_watchdog.cc b/src/node_watchdog.cc
index 29f0bc18c0d..22b09e83b79 100644
--- a/src/node_watchdog.cc
+++ b/src/node_watchdog.cc
@@ -34,6 +34,7 @@ namespace node {
using v8::Context;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
+using v8::Local;
using v8::Object;
using v8::Value;