We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5393e01 commit 9fc31e9Copy full SHA for 9fc31e9
2 files changed
common.gypi
@@ -38,7 +38,7 @@
38
39
# Reset this number to 0 on major V8 upgrades.
40
# Increment by one for each non-official patch applied to deps/v8.
41
- 'v8_embedder_string': '-node.7',
+ 'v8_embedder_string': '-node.8',
42
43
##### V8 defaults for Node.js #####
44
deps/v8/src/objects/backing-store.cc
@@ -322,7 +322,7 @@ std::unique_ptr<BackingStore> BackingStore::TryAllocateAndPartiallyCommitMemory(
322
// For accounting purposes, whether a GC was necessary.
323
bool did_retry = false;
324
325
- auto gc_retry = [&](const std::function<bool()>& fn) {
+ auto gc_retry = [&](const auto& fn) {
326
if (fn()) return true;
327
// Collect garbage and retry.
328
did_retry = true;
0 commit comments