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
committerJuan José Arboleda <soyjuanarbol@gmail.com>2020-04-17 20:42:58 -0500
commit392bba4ec586a3b5adfbd243aada711114afcc2d (patch)
treef6b460d3b14a3a854254edf9420f16d9a691d62a /src/heap_utils.cc
parent2abec128381b81581ab9590e4aa4ff0e868b0806 (diff)
downloadnode-new-392bba4ec586a3b5adfbd243aada711114afcc2d.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();
}