File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1837,7 +1837,7 @@ namespace seal
1837
1837
1838
1838
IterTuple () = default ;
1839
1839
1840
- IterTuple (SEALIter first, IterTuple<Rest...> rest) : first_(first), rest_(rest){};
1840
+ IterTuple (SEALIter first, IterTuple<Rest...> rest) : first_(first), rest_(rest){}
1841
1841
1842
1842
IterTuple (SEALIter first, Rest... rest) : first_(first), rest_(rest...)
1843
1843
{}
@@ -2061,7 +2061,7 @@ namespace seal
2061
2061
using iterator_category = std::random_access_iterator_tag;
2062
2062
using difference_type = std::ptrdiff_t ;
2063
2063
2064
- IterTuple (){};
2064
+ IterTuple (){}
2065
2065
2066
2066
IterTuple (SEALIter first) : first_(first)
2067
2067
{}
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ namespace seal
228
228
class MemoryPoolMT : public MemoryPool
229
229
{
230
230
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){}
232
232
233
233
~MemoryPoolMT () noexcept override ;
234
234
@@ -257,7 +257,7 @@ namespace seal
257
257
class MemoryPoolST : public MemoryPool
258
258
{
259
259
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){}
261
261
262
262
~MemoryPoolST () noexcept override ;
263
263
You can’t perform that action at this time.
0 commit comments