Skip to content

Commit f77c5db

Browse files
codebyterefoxxyz
authored andcommitted
src: remove more extra semis from member fns
PR-URL: nodejs#38744 Backport-PR-URL: nodejs#39704 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
1 parent 3c1a0f3 commit f77c5db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/node_blob.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ class Blob : public BaseObject {
4444
}
4545

4646
void MemoryInfo(MemoryTracker* tracker) const override;
47-
SET_MEMORY_INFO_NAME(Blob);
48-
SET_SELF_SIZE(Blob);
47+
SET_MEMORY_INFO_NAME(Blob)
48+
SET_SELF_SIZE(Blob)
4949

5050
// Copies the contents of the Blob into an ArrayBuffer.
5151
v8::MaybeLocal<v8::Value> GetArrayBuffer(Environment* env);

src/node_sockaddr.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ class SocketAddressBase : public BaseObject {
172172
}
173173

174174
void MemoryInfo(MemoryTracker* tracker) const override;
175-
SET_MEMORY_INFO_NAME(SocketAddressBase);
176-
SET_SELF_SIZE(SocketAddressBase);
175+
SET_MEMORY_INFO_NAME(SocketAddressBase)
176+
SET_SELF_SIZE(SocketAddressBase)
177177

178178
TransferMode GetTransferMode() const override {
179179
return TransferMode::kCloneable;

0 commit comments

Comments
 (0)