Skip to content

Commit

Permalink
fixup!: lint format
Browse files Browse the repository at this point in the history
Signed-off-by: himself65 <himself65@toeverything.info>
  • Loading branch information
himself65 committed Feb 3, 2023
1 parent 2d940b0 commit a6df4cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/node_process_object.cc
Expand Up @@ -113,8 +113,7 @@ 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
2 changes: 1 addition & 1 deletion src/node_report.cc
Expand Up @@ -797,7 +797,7 @@ static void PrintComponentVersions(JSONWriter* writer) {

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

0 comments on commit a6df4cb

Please sign in to comment.