We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 109f93e commit 400edfaCopy full SHA for 400edfa
common.gypi
@@ -36,7 +36,7 @@
36
37
# Reset this number to 0 on major V8 upgrades.
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.7',
+ 'v8_embedder_string': '-node.8',
40
41
##### V8 defaults for Node.js #####
42
deps/v8/src/compiler/turboshaft/index.h
@@ -671,7 +671,7 @@ class ConstOrV {
671
template <typename U,
672
typename = std::enable_if_t<std::is_constructible_v<V<T>, V<U>>>>
673
ConstOrV(V<U> index) // NOLINT(runtime/explicit)
674
- : constant_value_(), value_(index) {}
+ : constant_value_(std::nullopt), value_(index) {}
675
676
bool is_constant() const { return constant_value_.has_value(); }
677
constant_type constant_value() const {
0 commit comments