From d15e7665719d98130167ccad47d708236a38b582 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 7 Dec 2020 15:08:46 +0100 Subject: [PATCH] src: remove identical V macro This commit removes one of the V macros in IsolateData::MemoryInfo as they are identical as far as I can tell. --- src/env.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/env.cc b/src/env.cc index 3e03ba9121febf..504058d1782844 100644 --- a/src/env.cc +++ b/src/env.cc @@ -211,10 +211,7 @@ void IsolateData::MemoryInfo(MemoryTracker* tracker) const { #define V(PropertyName, StringValue) \ tracker->TrackField(#PropertyName, PropertyName()); PER_ISOLATE_SYMBOL_PROPERTIES(V) -#undef V -#define V(PropertyName, StringValue) \ - tracker->TrackField(#PropertyName, PropertyName()); PER_ISOLATE_STRING_PROPERTIES(V) #undef V