Skip to content

Commit c4c8931

Browse files
codebyterejuanarbol
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 bc17f37 commit c4c8931

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
@@ -55,7 +55,7 @@ class Realm : public MemoryRetainer {
5555
Realm& operator=(Realm&&) = delete;
5656

5757
SET_MEMORY_INFO_NAME(Realm)
58-
SET_SELF_SIZE(Realm);
58+
SET_SELF_SIZE(Realm)
5959
void MemoryInfo(MemoryTracker* tracker) const override;
6060

6161
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)