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 extra semicolons #669

Merged
merged 1 commit into from
May 15, 2024
Merged
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
4 changes: 2 additions & 2 deletions native/src/seal/util/iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -1837,7 +1837,7 @@ namespace seal

IterTuple() = default;

IterTuple(SEALIter first, IterTuple<Rest...> rest) : first_(first), rest_(rest){};
IterTuple(SEALIter first, IterTuple<Rest...> rest) : first_(first), rest_(rest){}

IterTuple(SEALIter first, Rest... rest) : first_(first), rest_(rest...)
{}
Expand Down Expand Up @@ -2061,7 +2061,7 @@ namespace seal
using iterator_category = std::random_access_iterator_tag;
using difference_type = std::ptrdiff_t;

IterTuple(){};
IterTuple(){}

IterTuple(SEALIter first) : first_(first)
{}
Expand Down
4 changes: 2 additions & 2 deletions native/src/seal/util/mempool.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ namespace seal
class MemoryPoolMT : public MemoryPool
{
public:
MemoryPoolMT(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){};
MemoryPoolMT(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){}

~MemoryPoolMT() noexcept override;

Expand Down Expand Up @@ -257,7 +257,7 @@ namespace seal
class MemoryPoolST : public MemoryPool
{
public:
MemoryPoolST(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){};
MemoryPoolST(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){}

~MemoryPoolST() noexcept override;

Expand Down