merged rev. 48728 from trunk

[SVN r48774]
This commit is contained in:
Joaquín M López Muñoz 2008-09-14 16:36:06 +00:00
parent df5eb5b646
commit 8c5ac57c6a

View File

@ -267,11 +267,10 @@ public:
}
multi_index_container<Value,IndexSpecifierList,Allocator>& operator=(
const multi_index_container<Value,IndexSpecifierList,Allocator>& x)
multi_index_container<Value,IndexSpecifierList,Allocator> x)
{
BOOST_MULTI_INDEX_CHECK_INVARIANT;
multi_index_container<Value,IndexSpecifierList,Allocator> tmp(x);
this->swap(tmp);
this->swap(x);
return *this;
}