Changeset 5d71d09 in mainline
- Timestamp:
- 2019-07-02T11:18:58Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d276424f
- Parents:
- 5ea9dd2
- Location:
- uspace/lib/cpp/include/__bits/thread
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/thread/future.hpp
r5ea9dd2 r5d71d09 199 199 } 200 200 201 aux::future_return_t<R>get()201 R get() 202 202 { 203 203 assert(this->state_); -
uspace/lib/cpp/include/__bits/thread/future_common.hpp
r5ea9dd2 r5d71d09 105 105 106 106 template<class T> 107 struct future_return: aux::type_is<T>108 { /* DUMMY BODY */ };109 110 template<class T>111 struct future_return<T&>: aux::type_is<T&>112 { /* DUMMY BODY */ };113 114 template<class T>115 using future_return_t = typename future_return<T>::type;116 117 template<class T>118 107 struct future_return_shared: aux::type_is<const T&> 119 108 { /* DUMMY BODY */ };
Note:
See TracChangeset
for help on using the changeset viewer.