1717#include < string>
1818#include < string_view>
1919#include < utility>
20+ #include < variant>
21+ #include < vector>
2022#include " isolate_object_collector.h"
2123
2224namespace MiniRacer {
@@ -84,7 +86,7 @@ Value::Value(v8::Isolate* isolate,
8486 }
8587}
8688
87- Value::Value (v8::Isolate* isolate,
89+ Value::Value (v8::Isolate* /* isolate*/ ,
8890 IsolateObjectCollector* isolate_object_collector,
8991 std::string_view val,
9092 ValueTypes type)
@@ -98,7 +100,7 @@ Value::Value(v8::Isolate* isolate,
98100 handle_.bytes = msg.data ();
99101}
100102
101- Value::Value (v8::Isolate* isolate,
103+ Value::Value (v8::Isolate* /* isolate*/ ,
102104 IsolateObjectCollector* isolate_object_collector,
103105 bool val)
104106 : isolate_object_collector_(isolate_object_collector) {
@@ -107,7 +109,7 @@ Value::Value(v8::Isolate* isolate,
107109 handle_.int_val = val ? 1 : 0 ;
108110}
109111
110- Value::Value (v8::Isolate* isolate,
112+ Value::Value (v8::Isolate* /* isolate*/ ,
111113 IsolateObjectCollector* isolate_object_collector,
112114 int64_t val,
113115 ValueTypes type)
@@ -117,7 +119,7 @@ Value::Value(v8::Isolate* isolate,
117119 handle_.int_val = val;
118120}
119121
120- Value::Value (v8::Isolate* isolate,
122+ Value::Value (v8::Isolate* /* isolate*/ ,
121123 IsolateObjectCollector* isolate_object_collector,
122124 double val,
123125 ValueTypes type)
0 commit comments