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:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-05-23 14:10:53 +0300
committerAnna Henningsen <anna@addaleax.net>2018-06-06 20:43:40 +0300
commitef25e095e57a6d589f2c6bed661ffaded0c17abd (patch)
tree2337e31ab0bd75d56075db74ae214cb26710d13c /src/node_platform.h
parent3bcad3c8f1991914c3ccb3335b7685859366b69a (diff)
src: remove unused fields isolate_
Currently the following compiler warnings are generated: In file included from ../src/node_platform.cc:1: ../src/node_platform.h:83:16: warning: private field 'isolate_' is not used [-Wunused-private-field] v8::Isolate* isolate_; ^ 1 warning generated. This commit removes these unused private member. PR-URL: https://github.com/nodejs/node/pull/20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to 'src/node_platform.h')
-rw-r--r--src/node_platform.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/node_platform.h b/src/node_platform.h
index 8f6ff89f491..cf0809ad1f6 100644
--- a/src/node_platform.h
+++ b/src/node_platform.h
@@ -80,7 +80,6 @@ class PerIsolatePlatformData :
static void RunForegroundTask(uv_timer_t* timer);
int ref_count_ = 1;
- v8::Isolate* isolate_;
uv_loop_t* const loop_;
uv_async_t* flush_tasks_ = nullptr;
TaskQueue<v8::Task> foreground_tasks_;