diff --git a/doc/move.qbk b/doc/move.qbk index d4918cc..a47c27f 100644 --- a/doc/move.qbk +++ b/doc/move.qbk @@ -767,6 +767,9 @@ Many thanks to all boosters that have tested, reviewed and improved the library. * Experimental: asymptotically optimal bufferless merge and sort algorithms: [funcref boost::movelib::adaptive_merge adaptive_merge] and [funcref boost::movelib::adaptive_sort adaptive_sort]. +* Fixed bug: + * [@https://svn.boost.org/trac/boost/ticket/11758 Trac #11758: ['"BOOST_MOVABLE_BUT_NOT_COPYABLE doesn't reset private access with rvalue ref version"]], + [endsect] [section:release_notes_boost_1_60 Boost 1.60 Release] diff --git a/include/boost/move/core.hpp b/include/boost/move/core.hpp index f1e8f58..c9cbec2 100644 --- a/include/boost/move/core.hpp +++ b/include/boost/move/core.hpp @@ -301,6 +301,7 @@ BOOST_MOVE_IMPL_NO_COPY_CTOR_OR_ASSIGN(TYPE)\ public:\ typedef int boost_move_emulation_t;\ + private:\ // //! This macro marks a type as copyable and movable.