forked from boostorg/unordered
Various inspect fixes.
[SVN r56603]
This commit is contained in:
@ -167,7 +167,7 @@ namespace boost { namespace unordered_detail {
|
|||||||
template <class A, class G>
|
template <class A, class G>
|
||||||
inline void hash_buckets<A, G>::swap(hash_buckets<A, G>& other)
|
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(buckets_, other.buckets_);
|
||||||
std::swap(bucket_count_, other.bucket_count_);
|
std::swap(bucket_count_, other.bucket_count_);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user