summaryrefslogtreecommitdiff
path: root/src/heap_utils.cc
diff options
context:
space:
mode:
authorJuan José Arboleda <soyjuanarbol@gmail.com>2020-04-14 17:16:40 -0500
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2020-04-27 20:40:40 +0100
commitca7e0a226e0ccb86cccd80d6f2b5facb7ad32d5d (patch)
tree7aeb7aeecb823a60d6221fb0ba0005c29e91fbea /src/heap_utils.cc
parentfc71a85c499f1ceacfdd3e037cae597a008815fb (diff)
downloadnode-new-ca7e0a226e0ccb86cccd80d6f2b5facb7ad32d5d.tar.gz
src: remove redundant v8::HeapSnapshot namespace
PR-URL: https://github.com/nodejs/node/pull/32854 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'src/heap_utils.cc')
-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 c21ff8c800..efdd68fde9 100644
--- a/src/heap_utils.cc
+++ b/src/heap_utils.cc
@@ -328,7 +328,7 @@ inline bool WriteSnapshot(Isolate* isolate, const char* filename) {
} // namespace
-void DeleteHeapSnapshot(const v8::HeapSnapshot* snapshot) {
+void DeleteHeapSnapshot(const HeapSnapshot* snapshot) {
const_cast<HeapSnapshot*>(snapshot)->Delete();
}