コード例 #1
0
ファイル: wait_list.hpp プロジェクト: EdKeith/compute
 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())
 {
 }