Skip to content

Commit

Permalink
fixup! Update src/node_process_object.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
himself65 and RaisinTen authored Feb 3, 2023
1 parent 2d940b0 commit 32a2e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_process_object.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ MaybeLocal<Object> CreateProcessObject(Realm* realm) {

#define V(key) \
do { \
versions_vec.push_back( \
std::make_pair(#key, per_process::metadata.versions.key)); \
versions_vec.emplace_back( \
#key, per_process::metadata.versions.key); \
} while (0);
NODE_VERSIONS_KEYS(V)
#undef V
Expand Down

0 comments on commit 32a2e32

Please sign in to comment.