diff --git a/include/boost/core/ref.hpp b/include/boost/core/ref.hpp index 147cee2..a416cbd 100644 --- a/include/boost/core/ref.hpp +++ b/include/boost/core/ref.hpp @@ -110,6 +110,13 @@ public: template friend class reference_wrapper; + /** + Constructs a `reference_wrapper` object that stores the + reference stored in the compatible `reference_wrapper` `r`. + + @remark Only enabled when `Y*` is convertible to `T*`. + @remark Does not throw. + */ template reference_wrapper( reference_wrapper r, typename enable_if_c::value, boost::detail::ref_empty>::type = boost::detail::ref_empty() ): t_( r.t_ )