Documentation fixes

[SVN r74306]
This commit is contained in:
Ion Gaztañaga
2011-09-08 06:58:18 +00:00
parent 52530c4b74
commit 59ffb87b9d
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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...

View File

@ -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