예제 #1
0
 void insert(const future<T> &future)
 {
     insert(future.get_event());
 }
예제 #2
0
파일: future.hpp 프로젝트: junmuz/compute
 future(const future<T> &other)
     : m_event(other.get_event())
 {
 }