Skip to content

Commit

Permalink
src: remove unnecessary semicolons
Browse files Browse the repository at this point in the history
PR-URL: nodejs#46171
Reviewed-By: Darshan Sen <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Yagiz Nizipli <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Jiawen Geng <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Gerhard Stöbich <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
codebytere authored Jan 13, 2023
1 parent 5d50b84 commit cf105c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node_realm.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Realm : public MemoryRetainer {
Realm& operator=(Realm&&) = delete;

SET_MEMORY_INFO_NAME(Realm)
SET_SELF_SIZE(Realm);
SET_SELF_SIZE(Realm)
void MemoryInfo(MemoryTracker* tracker) const override;

void CreateProperties();
Expand Down
2 changes: 1 addition & 1 deletion src/node_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace util {

class WeakReference : public SnapshotableObject {
public:
SERIALIZABLE_OBJECT_METHODS();
SERIALIZABLE_OBJECT_METHODS()

static constexpr FastStringKey type_name{"node::util::WeakReference"};
static constexpr EmbedderObjectType type_int =
Expand Down

0 comments on commit cf105c4

Please sign in to comment.