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