Skip to content

Commit

Permalink
src: remove unnecessary semicolons
Browse files Browse the repository at this point in the history
PR-URL: #46171
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
codebytere authored and RafaelGSS committed Jan 20, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 2eb87f2 commit 7dc9a53
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
@@ -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();
2 changes: 1 addition & 1 deletion src/node_util.h
Original file line number Diff line number Diff line change
@@ -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 =

0 comments on commit 7dc9a53

Please sign in to comment.