Skip to content

Commit 7dc9a53

Browse files
codebytereRafaelGSS
authored andcommitted
src: remove unnecessary semicolons
PR-URL: #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]>
1 parent 2eb87f2 commit 7dc9a53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/node_realm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class Realm : public MemoryRetainer {
5656
Realm& operator=(Realm&&) = delete;
5757

5858
SET_MEMORY_INFO_NAME(Realm)
59-
SET_SELF_SIZE(Realm);
59+
SET_SELF_SIZE(Realm)
6060
void MemoryInfo(MemoryTracker* tracker) const override;
6161

6262
void CreateProperties();

src/node_util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace util {
1212

1313
class WeakReference : public SnapshotableObject {
1414
public:
15-
SERIALIZABLE_OBJECT_METHODS();
15+
SERIALIZABLE_OBJECT_METHODS()
1616

1717
static constexpr FastStringKey type_name{"node::util::WeakReference"};
1818
static constexpr EmbedderObjectType type_int =

0 commit comments

Comments
 (0)