Skip to content

Commit 781713d

Browse files
committed
src: remove unused isolate member
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>
1 parent d7087df commit 781713d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/env-inl.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ inline IsolateData::IsolateData(v8::Isolate* isolate, uv_loop_t* event_loop,
4949
sizeof(StringValue) - 1).ToLocalChecked()),
5050
PER_ISOLATE_STRING_PROPERTIES(V)
5151
#undef V
52-
isolate_(isolate), event_loop_(event_loop),
53-
zero_fill_field_(zero_fill_field) {}
52+
event_loop_(event_loop), zero_fill_field_(zero_fill_field) {}
5453

5554
inline uv_loop_t* IsolateData::event_loop() const {
5655
return event_loop_;

src/env.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ class IsolateData {
330330
#undef VS
331331
#undef VP
332332

333-
v8::Isolate* const isolate_;
334333
uv_loop_t* const event_loop_;
335334
uint32_t* const zero_fill_field_;
336335

0 commit comments

Comments
 (0)