Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: remove extra semi after member fn
  • Loading branch information
codebytere committed May 14, 2021
commit d8e9367d4a16ad81a6ddbe41586bcc55cf3d5ba6
4 changes: 2 additions & 2 deletions src/cares_wrap.h
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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