Various inspect fixes.

[SVN r56603]
This commit is contained in:
Daniel James
2009-10-05 21:29:39 +00:00
parent 373791d0b2
commit 854dc0b353

View File

@ -167,7 +167,7 @@ namespace boost { namespace unordered_detail {
template <class A, class G>
inline void hash_buckets<A, G>::swap(hash_buckets<A, G>& other)
{
BOOST_ASSERT(node_alloc() == other.node_alloc());
BOOST_ASSERT(node_alloc() == other.node_alloc());
std::swap(buckets_, other.buckets_);
std::swap(bucket_count_, other.bucket_count_);
}