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 8085ba3 commit cc22bc0Copy full SHA for cc22bc0
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.10',
+ 'v8_embedder_string': '-node.11',
42
43
##### V8 defaults for Node.js #####
44
deps/v8/src/objects/backing-store.cc
@@ -310,7 +310,7 @@ std::unique_ptr<BackingStore> BackingStore::TryAllocateAndPartiallyCommitMemory(
310
// For accounting purposes, whether a GC was necessary.
311
bool did_retry = false;
312
313
- auto gc_retry = [&](const std::function<bool()>& fn) {
+ auto gc_retry = [&](const auto& fn) {
314
if (fn()) return true;
315
// Collect garbage and retry.
316
did_retry = true;
0 commit comments