From 8864353c6e83eaffc4eb28ad141d234e5e4e896f Mon Sep 17 00:00:00 2001 From: rickyes Date: Sun, 26 Apr 2020 22:08:35 +0800 Subject: [PATCH] src: remove unnecessary fully qualified names PR-URL: https://github.com/nodejs/node/pull/33077 Reviewed-By: Zeyu Yang Reviewed-By: Colin Ihrig Reviewed-By: Gireesh Punathil Reviewed-By: James M Snell --- src/heap_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heap_utils.cc b/src/heap_utils.cc index efdd68fde9d160..2e979e49e87922 100644 --- a/src/heap_utils.cc +++ b/src/heap_utils.cc @@ -237,7 +237,7 @@ class HeapSnapshotStream : public AsyncWrap, HeapSnapshotStream( Environment* env, HeapSnapshotPointer&& snapshot, - v8::Local obj) : + Local obj) : AsyncWrap(env, obj, AsyncWrap::PROVIDER_HEAPSNAPSHOT), StreamBase(env), snapshot_(std::move(snapshot)) {