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 37
37
38
38
# Reset this number to 0 on major V8 upgrades.
39
39
# Increment by one for each non-official patch applied to deps/v8.
40
- 'v8_embedder_string' : '-node.11 ' ,
40
+ 'v8_embedder_string' : '-node.12 ' ,
41
41
42
42
##### V8 defaults for Node.js #####
43
43
Original file line number Diff line number Diff line change @@ -480,7 +480,7 @@ class ConstOrV {
480
480
template <typename U,
481
481
typename = std::enable_if_t <std::is_constructible_v<V<T>, V<U>>>>
482
482
ConstOrV (V<U> index) // NOLINT(runtime/explicit)
483
- : constant_value_(), value_(index) {}
483
+ : constant_value_(std::nullopt ), value_(index) {}
484
484
485
485
bool is_constant () const { return constant_value_.has_value (); }
486
486
constant_type constant_value () const {
You can’t perform that action at this time.
0 commit comments