X Tutup
The Wayback Machine - https://web.archive.org/web/20220715132525/https://github.com/nodejs/node/commit/47f1c5257a
Skip to content
Permalink
Browse files
deps: silence irrelevant V8 warning
PR-URL: #37330
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
targos committed Feb 24, 2021
1 parent 19d9752 commit 47f1c5257a9456bcc9688571778e454b8e4ad654
Showing 2 changed files with 2 additions and 2 deletions.
@@ -36,7 +36,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.8',
'v8_embedder_string': '-node.9',

##### V8 defaults for Node.js #####

@@ -1631,7 +1631,7 @@ class V8_EXPORT Module : public Data {
*/
int GetIdentityHash() const;

using ResolveCallback V8_DEPRECATE_SOON("Use ResolveModuleCallback") =
using ResolveCallback =
MaybeLocal<Module> (*)(Local<Context> context, Local<String> specifier,
Local<Module> referrer);
using ResolveModuleCallback = MaybeLocal<Module> (*)(

0 comments on commit 47f1c52

Please sign in to comment.
X Tutup