From 583378a946cf6a5dde1411b6285ec6a0a1adfb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 30 Aug 2014 02:43:42 +0200 Subject: [PATCH] Update boost::move documentation with a more accurate description. --- include/boost/move/utility_core.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/boost/move/utility_core.hpp b/include/boost/move/utility_core.hpp index 1786b1e..3e04172 100644 --- a/include/boost/move/utility_core.hpp +++ b/include/boost/move/utility_core.hpp @@ -164,8 +164,9 @@ #if defined(BOOST_MOVE_DOXYGEN_INVOKED) //! This function provides a way to convert a reference into a rvalue reference - //! in compilers with rvalue references. For other compilers converts T & into - //! ::boost::rv & so that move emulation is activated. + //! in compilers with rvalue references. For other compilers if `T` is Boost.Move + //! enabled type then it converts `T&` into ::boost::rv & so that + //! move emulation is activated, else it returns `T &`. template rvalue_reference move(input_reference) noexcept;