Index: any.hpp =================================================================== --- any.hpp (revision 48688) +++ any.hpp (working copy) @@ -61,9 +61,9 @@ return *this; } - any & operator=(const any & rhs) + any & operator=(any rhs) { - any(rhs).swap(*this); + rhs.swap(*this); return *this; }