2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-26 19:12:11 +00:00

remove todo comments.

This commit is contained in:
Vicente J. Botet Escriba
2014-08-25 17:17:50 +02:00
parent aeabda8d45
commit fc0d7e23b3
2 changed files with 0 additions and 2 deletions

View File

@@ -97,7 +97,6 @@ namespace executors
*/
void submit(BOOST_THREAD_RV_REF(work) closure) {
return ex.submit(boost::move(closure));
//return ex.submit(boost::forward<work>(closure)); // todo check why this doesn't work
}
// void submit(work & closure) {
// return ex.submit(closure);

View File

@@ -69,7 +69,6 @@ namespace boost
* Whatever exception that can be throw while storing the closure.
*/
void submit(BOOST_THREAD_RV_REF(work) closure) {
//ex.submit(boost::forward<work>(closure)); // todo check why this doesn't work
ex.submit(boost::move(closure));
}
// void submit(work& closure) {