Skip to content

Commit 5bde9e6

Browse files
targosRafaelGSS
authored andcommitted
deps: silence internal V8 deprecation warning
PR-URL: #52293 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> PR-URL: #52465 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
1 parent 46e628c commit 5bde9e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
# Reset this number to 0 on major V8 upgrades.
3939
# Increment by one for each non-official patch applied to deps/v8.
40-
'v8_embedder_string': '-node.6',
40+
'v8_embedder_string': '-node.7',
4141

4242
##### V8 defaults for Node.js #####
4343

deps/v8/src/base/optional.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace base {
1616

1717
// These aliases are deprecated, use std::optional directly.
1818
template <typename T>
19-
using Optional [[deprecated]] = std::optional<T>;
19+
using Optional = std::optional<T>;
2020

2121
using std::in_place;
2222
using std::make_optional;

0 commit comments

Comments
 (0)