Skip to content

Commit

Permalink
src: remove extra semi after member fn
Browse files Browse the repository at this point in the history
PR-URL: #38686
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
codebytere authored and targos committed Jun 11, 2021
1 parent 212cd5c commit d66f88c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/cares_wrap.h
Expand Up @@ -141,8 +141,8 @@ struct NodeAresTask final : public MemoryRetainer {
uv_poll_t poll_watcher;

inline void MemoryInfo(MemoryTracker* trakcer) const override;
SET_MEMORY_INFO_NAME(NodeAresTask);
SET_SELF_SIZE(NodeAresTask);
SET_MEMORY_INFO_NAME(NodeAresTask)
SET_SELF_SIZE(NodeAresTask)

struct Hash {
inline size_t operator()(NodeAresTask* a) const {
Expand Down
2 changes: 1 addition & 1 deletion src/timer_wrap.h
Expand Up @@ -32,7 +32,7 @@ class TimerWrap final : public MemoryRetainer {
void Ref();
void Unref();

SET_NO_MEMORY_INFO();
SET_NO_MEMORY_INFO()
SET_MEMORY_INFO_NAME(TimerWrap)
SET_SELF_SIZE(TimerWrap)

Expand Down

0 comments on commit d66f88c

Please sign in to comment.