Skip to content

Commit

Permalink
Remove extra semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Davis (EDGE) authored and kimlaine committed May 15, 2024
1 parent 206648d commit a3d00b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit a3d00b6

Please sign in to comment.