Skip to content

Commit

Permalink
src: remove unused isolate member
Browse files Browse the repository at this point in the history
PR-URL: #7334
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
bnoordhuis committed Jun 21, 2016
1 parent d7087df commit 781713d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/env-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ inline IsolateData::IsolateData(v8::Isolate* isolate, uv_loop_t* event_loop,
sizeof(StringValue) - 1).ToLocalChecked()),
PER_ISOLATE_STRING_PROPERTIES(V)
#undef V
isolate_(isolate), event_loop_(event_loop),
zero_fill_field_(zero_fill_field) {}
event_loop_(event_loop), zero_fill_field_(zero_fill_field) {}

inline uv_loop_t* IsolateData::event_loop() const {
return event_loop_;
Expand Down
1 change: 0 additions & 1 deletion src/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ class IsolateData {
#undef VS
#undef VP

v8::Isolate* const isolate_;
uv_loop_t* const event_loop_;
uint32_t* const zero_fill_field_;

Expand Down

0 comments on commit 781713d

Please sign in to comment.