summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrickyes <mail@zhoumq.cn>2020-04-26 22:08:35 +0800
committerMichaƫl Zasso <targos@protonmail.com>2020-05-04 14:23:22 +0200
commit10a87c81cfd86b5b412c26385b3b29bea146d528 (patch)
tree6575bbfaa6904ceca24f144b6f16613c349356bf
parentc49e3ea20c2ce73bce64ea714e9cbfab001f97e0 (diff)
downloadnode-new-10a87c81cfd86b5b412c26385b3b29bea146d528.tar.gz
src: remove unnecessary fully qualified names
PR-URL: https://github.com/nodejs/node/pull/33077 Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
-rw-r--r--src/heap_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heap_utils.cc b/src/heap_utils.cc
index efdd68fde9..2e979e49e8 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<v8::Object> obj) :
+ Local<Object> obj) :
AsyncWrap(env, obj, AsyncWrap::PROVIDER_HEAPSNAPSHOT),
StreamBase(env),
snapshot_(std::move(snapshot)) {