[Boost-bugs] [Boost C++ Libraries] #2486: thread: no documented thread move support function

Subject: [Boost-bugs] [Boost C++ Libraries] #2486: thread: no documented thread move support function
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2008-11-08 22:10:53


#2486: thread: no documented thread move support function
--------------------------------------+-------------------------------------
 Reporter: vicente.botet_at_[hidden] | Owner: anthonyw
     Type: Bugs | Status: new
Milestone: Boost 1.38.0 | Component: thread
  Version: Boost 1.36.0 | Severity: Problem
 Keywords: |
--------------------------------------+-------------------------------------
 The following move support functions are not docummented on the
 documentation.

 #ifdef BOOST_HAS_RVALUE_REFS
     template <class F> thread(F&& f);
     thread(thread&& other);
     thread& operator=(thread&& other);
     thread&& move();
 #else
 #ifdef BOOST_NO_SFINAE
 #else
     template <class F>
     explicit thread(F f,typename
 disable_if<boost::is_convertible<F&,detail::thread_move_t<F> >, dummy*
>::type=0)
 #endif
     template <class F> explicit thread(detail::thread_move_t<F> f);
     thread(detail::thread_move_t<thread> x);
     thread& operator=(detail::thread_move_t<thread> x);
     operator detail::thread_move_t<thread>();
     detail::thread_move_t<thread> move();
 #endif

 Even if the semantics of these functions could be induced for completud it
 will be good to add them to the reference documentation.

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/2486>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:49:59 UTC