Merge [57957] to release. Fixes #3570.

[SVN r58067]
This commit is contained in:
Peter Dimov
2009-11-30 20:34:39 +00:00
parent 4f5062004a
commit b0fd8a6b08
3 changed files with 8 additions and 8 deletions

View File

@@ -122,7 +122,7 @@ public:
intrusive_ptr & operator=(intrusive_ptr && rhs)
{
this_type(std::move(rhs)).swap(*this);
this_type( static_cast< intrusive_ptr && >( rhs ) ).swap(*this);
return *this;
}