Skip to content
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