Changeset 3a29607 in mainline
- Timestamp:
- 2019-06-30T15:43:41Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bd6ad4b
- Parents:
- 6e97265
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/thread/future.hpp
r6e97265 r3a29607 189 189 if (this->state_->has_exception()) 190 190 this->state_->throw_stored_exception(); 191 auto res = std::move(this->state_->get()); 192 193 this->release_state_(); 194 195 return res; 191 192 return this->state_->get(); 196 193 } 197 194 };
Note:
See TracChangeset
for help on using the changeset viewer.