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 3636
3737 # Reset this number to 0 on major V8 upgrades.
3838 # Increment by one for each non-official patch applied to deps/v8.
39- 'v8_embedder_string' : '-node.7 ' ,
39+ 'v8_embedder_string' : '-node.8 ' ,
4040
4141 ##### V8 defaults for Node.js #####
4242
Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ class ConstOrV {
671671 template <typename U,
672672 typename = std::enable_if_t <std::is_constructible_v<V<T>, V<U>>>>
673673 ConstOrV (V<U> index) // NOLINT(runtime/explicit)
674- : constant_value_(), value_(index) {}
674+ : constant_value_(std:: nullopt ), value_(index) {}
675675
676676 bool is_constant () const { return constant_value_.has_value (); }
677677 constant_type constant_value () const {
You can’t perform that action at this time.
0 commit comments