summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2019-10-26 18:29:46 +0200
committerAnna Henningsen <anna@addaleax.net>2019-11-07 10:39:40 +0100
commit6072e01c938e22498cd46c3d8a2c21a16a632456 (patch)
tree4d0925f227eba3f382b246ea2ff878b64eb47952 /src/api
parent35ae49db515ec4a7ad74ee3666eda34e7bfd85b5 (diff)
downloadandroid-node-v8-6072e01c938e22498cd46c3d8a2c21a16a632456.tar.gz
android-node-v8-6072e01c938e22498cd46c3d8a2c21a16a632456.tar.bz2
android-node-v8-6072e01c938e22498cd46c3d8a2c21a16a632456.zip
src: do not use `std::function` for `OnScopeLeave`
Using `std::function` adds an extra layer of indirection, and in particular, heap allocations that are not necessary in our use case here. PR-URL: https://github.com/nodejs/node/pull/30134 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/api')
-rw-r--r--src/api/callback.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/callback.cc b/src/api/callback.cc
index 238bf49a54..355986b981 100644
--- a/src/api/callback.cc
+++ b/src/api/callback.cc
@@ -105,7 +105,7 @@ void InternalCallbackScope::Close() {
if (!env_->can_call_into_js()) return;
- OnScopeLeave weakref_cleanup([&]() { env_->RunWeakRefCleanup(); });
+ auto weakref_cleanup = OnScopeLeave([&]() { env_->RunWeakRefCleanup(); });
if (!tick_info->has_tick_scheduled()) {
MicrotasksScope::PerformCheckpoint(env_->isolate());