Add max_size() impl

This commit is contained in:
Christian Mazakas
2023-06-15 09:17:25 -07:00
parent 6fed6ea5ad
commit ac5a99da31
2 changed files with 10 additions and 0 deletions

View File

@@ -246,6 +246,7 @@ namespace boost {
///
size_type size() const noexcept { return table_.size(); }
size_type max_size() const noexcept { return table_.max_size(); }
BOOST_ATTRIBUTE_NODISCARD bool empty() const noexcept
{