mirror of
https://github.com/boostorg/move.git
synced 2025-07-29 20:07:13 +02:00
Documentation fixes
[SVN r74306]
This commit is contained in:
@ -13,7 +13,7 @@ import quickbook ;
|
||||
|
||||
doxygen autodoc
|
||||
:
|
||||
[ glob ../../../boost/move/*.hpp ]
|
||||
[ glob ../../../boost/move/move.hpp ]
|
||||
:
|
||||
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
||||
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
||||
|
@ -717,10 +717,10 @@ operators to references to `::boost::rv`:
|
||||
|
||||
#define BOOST_MOVABLE_BUT_NOT_COPYABLE(TYPE)\
|
||||
public:\
|
||||
operator ::BOOST_MOVE_NAMESPACE::rv<TYPE>&() \
|
||||
{ return *reinterpret_cast< ::BOOST_MOVE_NAMESPACE::rv<TYPE>* >(this); }\
|
||||
operator const ::BOOST_MOVE_NAMESPACE::rv<TYPE>&() const \
|
||||
{ return *reinterpret_cast<const ::BOOST_MOVE_NAMESPACE::rv<TYPE>* >(this); }\
|
||||
operator ::boost::rv<TYPE>&() \
|
||||
{ return *static_cast< ::boost::rv<TYPE>* >(this); }\
|
||||
operator const ::boost::rv<TYPE>&() const \
|
||||
{ return static_cast<const ::boost::rv<TYPE>* >(this); }\
|
||||
private:\
|
||||
//More stuff...
|
||||
|
||||
|
@ -18,7 +18,7 @@ class Base
|
||||
public:
|
||||
Base(){}
|
||||
|
||||
// Compiler-generated copy constructor...
|
||||
Base(const Base &x) {/**/} // Copy ctor
|
||||
|
||||
Base(BOOST_RV_REF(Base) x) {/**/} // Move ctor
|
||||
|
||||
|
Reference in New Issue
Block a user