We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16bc07e commit f04f95bCopy full SHA for f04f95b
common.gypi
@@ -37,7 +37,7 @@
37
38
# Reset this number to 0 on major V8 upgrades.
39
# Increment by one for each non-official patch applied to deps/v8.
40
- 'v8_embedder_string': '-node.11',
+ 'v8_embedder_string': '-node.12',
41
42
##### V8 defaults for Node.js #####
43
deps/v8/src/compiler/turboshaft/index.h
@@ -480,7 +480,7 @@ class ConstOrV {
480
template <typename U,
481
typename = std::enable_if_t<std::is_constructible_v<V<T>, V<U>>>>
482
ConstOrV(V<U> index) // NOLINT(runtime/explicit)
483
- : constant_value_(), value_(index) {}
+ : constant_value_(std::nullopt), value_(index) {}
484
485
bool is_constant() const { return constant_value_.has_value(); }
486
constant_type constant_value() const {
0 commit comments