Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary semicolons after macros #27529

Closed
wants to merge 1 commit into from
Closed
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
18 changes: 9 additions & 9 deletions src/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -421,8 +421,8 @@ class IsolateData : public MemoryRetainer {
MultiIsolatePlatform* platform = nullptr,
ArrayBufferAllocator* node_allocator = nullptr,
const std::vector<size_t>* indexes = nullptr);
SET_MEMORY_INFO_NAME(IsolateData);
SET_SELF_SIZE(IsolateData);
SET_MEMORY_INFO_NAME(IsolateData)
SET_SELF_SIZE(IsolateData)
void MemoryInfo(MemoryTracker* tracker) const override;
std::vector<size_t> Serialize(v8::SnapshotCreator* creator);

Expand Down Expand Up @@ -585,8 +585,8 @@ extern std::shared_ptr<KVStore> system_environment;

class AsyncHooks : public MemoryRetainer {
public:
SET_MEMORY_INFO_NAME(AsyncHooks);
SET_SELF_SIZE(AsyncHooks);
SET_MEMORY_INFO_NAME(AsyncHooks)
SET_SELF_SIZE(AsyncHooks)
void MemoryInfo(MemoryTracker* tracker) const override;

// Reason for both UidFields and Fields are that one is stored as a double*
Expand Down Expand Up @@ -688,8 +688,8 @@ class ImmediateInfo : public MemoryRetainer {
ImmediateInfo(const ImmediateInfo&) = delete;
ImmediateInfo& operator=(const ImmediateInfo&) = delete;

SET_MEMORY_INFO_NAME(ImmediateInfo);
SET_SELF_SIZE(ImmediateInfo);
SET_MEMORY_INFO_NAME(ImmediateInfo)
SET_SELF_SIZE(ImmediateInfo)
void MemoryInfo(MemoryTracker* tracker) const override;

private:
Expand All @@ -707,8 +707,8 @@ class TickInfo : public MemoryRetainer {
inline bool has_tick_scheduled() const;
inline bool has_rejection_to_warn() const;

SET_MEMORY_INFO_NAME(TickInfo);
SET_SELF_SIZE(TickInfo);
SET_MEMORY_INFO_NAME(TickInfo)
SET_SELF_SIZE(TickInfo)
void MemoryInfo(MemoryTracker* tracker) const override;

TickInfo(const TickInfo&) = delete;
Expand Down Expand Up @@ -787,7 +787,7 @@ class Environment : public MemoryRetainer {
Environment(const Environment&) = delete;
Environment& operator=(const Environment&) = delete;

SET_MEMORY_INFO_NAME(Environment);
SET_MEMORY_INFO_NAME(Environment)

inline size_t SelfSize() const override;
bool IsRootNode() const override { return true; }
Expand Down