Browse Source

src: remove unused isolate member

PR-URL: https://github.com/nodejs/node/pull/7334
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
v7.x
Ben Noordhuis 9 years ago
parent
commit
781713d5ef
  1. 3
      src/env-inl.h
  2. 1
      src/env.h

3
src/env-inl.h

@ -49,8 +49,7 @@ inline IsolateData::IsolateData(v8::Isolate* isolate, uv_loop_t* event_loop,
sizeof(StringValue) - 1).ToLocalChecked()), sizeof(StringValue) - 1).ToLocalChecked()),
PER_ISOLATE_STRING_PROPERTIES(V) PER_ISOLATE_STRING_PROPERTIES(V)
#undef V #undef V
isolate_(isolate), event_loop_(event_loop), event_loop_(event_loop), zero_fill_field_(zero_fill_field) {}
zero_fill_field_(zero_fill_field) {}
inline uv_loop_t* IsolateData::event_loop() const { inline uv_loop_t* IsolateData::event_loop() const {
return event_loop_; return event_loop_;

1
src/env.h

@ -330,7 +330,6 @@ class IsolateData {
#undef VS #undef VS
#undef VP #undef VP
v8::Isolate* const isolate_;
uv_loop_t* const event_loop_; uv_loop_t* const event_loop_;
uint32_t* const zero_fill_field_; uint32_t* const zero_fill_field_;

Loading…
Cancel
Save