Remove mentions of deprecated macros in documentation

This commit is contained in:
Marshall Clow
2015-09-10 21:03:52 -07:00
parent 9efcc3ba7a
commit c7295862bc

View File

@@ -91,7 +91,7 @@ int main()
movable x, y; movable x, y;
swap_stats::reset_stats(); swap_stats::reset_stats();
::boost::adl_move_swap(x, y); ::boost::adl_move_swap(x, y);
#if defined(BOOST_NO_RVALUE_REFERENCES) #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
//In non rvalue reference compilers, //In non rvalue reference compilers,
//movable classes with no swap() member uses //movable classes with no swap() member uses
//boost::move() to implement swap. //boost::move() to implement swap.
@@ -117,7 +117,7 @@ int main()
movable_swap_member x, y; movable_swap_member x, y;
swap_stats::reset_stats(); swap_stats::reset_stats();
::boost::adl_move_swap(x, y); ::boost::adl_move_swap(x, y);
#if defined(BOOST_NO_RVALUE_REFERENCES) #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
//In non rvalue reference compilers, //In non rvalue reference compilers,
//movable classes with no swap() member uses //movable classes with no swap() member uses
//boost::move() to implement swap. //boost::move() to implement swap.