Changeset d923fca for libcfa/src/concurrency/future.hfa
- Timestamp:
- Feb 18, 2025, 12:54:23 PM (6 weeks ago)
- Branches:
- master
- Children:
- 8705a11
- Parents:
- 3e5fea2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/concurrency/future.hfa ¶
r3e5fea2 rd923fca 176 176 } 177 177 178 bool on_selected( future(T) & this, select_node & node) { return true; }178 bool on_selected( future(T) &, select_node & ) { return true; } 179 179 } 180 180 } … … 204 204 // Mark the future as abandoned, meaning it will be deleted by the server 205 205 // This doesn't work beause of the potential need for a destructor 206 void abandon( single_future(T) & this );206 // void abandon( single_future(T) & this ); 207 207 208 208 // Fulfil the future, returns whether or not someone was unblocked
Note: See TracChangeset
for help on using the changeset viewer.