Skip to content

Commit 621df69

Browse files
codebyteretargos
authored andcommitted
src: remove extra semi after member fn
PR-URL: #38686 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 97fc131 commit 621df69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/cares_wrap.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ struct NodeAresTask final : public MemoryRetainer {
141141
uv_poll_t poll_watcher;
142142

143143
inline void MemoryInfo(MemoryTracker* trakcer) const override;
144-
SET_MEMORY_INFO_NAME(NodeAresTask);
145-
SET_SELF_SIZE(NodeAresTask);
144+
SET_MEMORY_INFO_NAME(NodeAresTask)
145+
SET_SELF_SIZE(NodeAresTask)
146146

147147
struct Hash {
148148
inline size_t operator()(NodeAresTask* a) const {

src/timer_wrap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TimerWrap final : public MemoryRetainer {
3232
void Ref();
3333
void Unref();
3434

35-
SET_NO_MEMORY_INFO();
35+
SET_NO_MEMORY_INFO()
3636
SET_MEMORY_INFO_NAME(TimerWrap)
3737
SET_SELF_SIZE(TimerWrap)
3838

0 commit comments

Comments
 (0)