File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
deps/v8/src/compiler/turboshaft Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 3737
3838 # Reset this number to 0 on major V8 upgrades.
3939 # Increment by one for each non-official patch applied to deps/v8.
40- 'v8_embedder_string' : '-node.11 ' ,
40+ 'v8_embedder_string' : '-node.12 ' ,
4141
4242 ##### V8 defaults for Node.js #####
4343
Original file line number Diff line number Diff line change @@ -480,7 +480,7 @@ class ConstOrV {
480480 template <typename U,
481481 typename = std::enable_if_t <std::is_constructible_v<V<T>, V<U>>>>
482482 ConstOrV (V<U> index) // NOLINT(runtime/explicit)
483- : constant_value_(), value_(index) {}
483+ : constant_value_(std:: nullopt ), value_(index) {}
484484
485485 bool is_constant () const { return constant_value_.has_value (); }
486486 constant_type constant_value () const {
You can’t perform that action at this time.
0 commit comments