Skip to content

Commit a3d00b6

Browse files
Chris Davis (EDGE)kimlaine
authored andcommitted
Remove extra semicolons
1 parent 206648d commit a3d00b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

native/src/seal/util/iterator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ namespace seal
18371837

18381838
IterTuple() = default;
18391839

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

18421842
IterTuple(SEALIter first, Rest... rest) : first_(first), rest_(rest...)
18431843
{}
@@ -2061,7 +2061,7 @@ namespace seal
20612061
using iterator_category = std::random_access_iterator_tag;
20622062
using difference_type = std::ptrdiff_t;
20632063

2064-
IterTuple(){};
2064+
IterTuple(){}
20652065

20662066
IterTuple(SEALIter first) : first_(first)
20672067
{}

native/src/seal/util/mempool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ namespace seal
228228
class MemoryPoolMT : public MemoryPool
229229
{
230230
public:
231-
MemoryPoolMT(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){};
231+
MemoryPoolMT(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){}
232232

233233
~MemoryPoolMT() noexcept override;
234234

@@ -257,7 +257,7 @@ namespace seal
257257
class MemoryPoolST : public MemoryPool
258258
{
259259
public:
260-
MemoryPoolST(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){};
260+
MemoryPoolST(bool clear_on_destruction = false) : clear_on_destruction_(clear_on_destruction){}
261261

262262
~MemoryPoolST() noexcept override;
263263

0 commit comments

Comments
 (0)