| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 850ff02 commit faf8ada
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -37,7 +37,7 @@ | |||
| 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 { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments