Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
danbev committed Dec 7, 2020
commit d15e7665719d98130167ccad47d708236a38b582
3 changes: 0 additions & 3 deletions src/env.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down