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 9fcd290 commit 2743451Copy full SHA for 2743451
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;
tools/v8_gypfiles/v8.gyp
@@ -299,6 +299,7 @@
299
'type': 'static_library',
300
'toolsets': ['host', 'target'],
301
'dependencies': [
302
+ 'torque_generated_initializers',
303
'v8_base_without_compiler',
304
'v8_shared_internal_headers',
305
'v8_pch',
0 commit comments