Remove extraneous semicolons

This commit is contained in:
Christian Mazakas
2023-06-20 15:54:08 -07:00
parent 7d39b68e46
commit dce386068b
9 changed files with 51 additions and 51 deletions

View File

@@ -662,7 +662,7 @@ namespace boost {
float max_load_factor() const noexcept
{
return table_.max_load_factor();
};
}
void max_load_factor(float) {}
size_type max_load() const noexcept { return table_.max_load(); }

View File

@@ -285,7 +285,7 @@ struct group15
std::size_t pos=reinterpret_cast<uintptr_t>(pc)%sizeof(group15);
group15 *pg=reinterpret_cast<group15*>(pc-pos);
return !pg->is_not_overflowed(*pc);
};
}
inline int match_available()const
{

View File

@@ -1624,7 +1624,7 @@ namespace boost {
typedef std::ptrdiff_t difference_type;
typedef std::forward_iterator_tag iterator_category;
iterator() : p(), itb(){};
iterator() : p(), itb(){}
reference operator*() const BOOST_NOEXCEPT { return dereference(); }
pointer operator->() const BOOST_NOEXCEPT
@@ -1715,7 +1715,7 @@ namespace boost {
typedef std::ptrdiff_t difference_type;
typedef std::forward_iterator_tag iterator_category;
c_iterator() : p(), itb(){};
c_iterator() : p(), itb(){}
c_iterator(iterator<Node, Bucket> it) : p(it.p), itb(it.itb) {}
reference operator*() const BOOST_NOEXCEPT { return dereference(); }
@@ -3393,7 +3393,7 @@ namespace boost {
}
}
buckets_.unlink_empty_buckets();
BOOST_RETHROW;
BOOST_RETHROW
}
BOOST_CATCH_END