Unordered/hash: Avoid a gcc warning. Refs #6771

[SVN r77832]
This commit is contained in:
Daniel James
2012-04-08 15:29:15 +00:00
parent 4e759b4444
commit c8c71d0ad1
37 changed files with 64 additions and 46 deletions

View File

@@ -391,7 +391,7 @@ namespace boost { namespace unordered { namespace detail {
std::size_t min_buckets_for_size(std::size_t size) const
{
BOOST_ASSERT(this->mlf_ != 0);
BOOST_ASSERT(this->mlf_ >= minimum_max_load_factor);
using namespace std;