================
@@ -985,6 +985,9 @@ future<_Rp>::~future() {
template <class _Rp>
_Rp future<_Rp>::get() {
+ if (__state_ == nullptr) [[unlikely]] {
----------------
Ekkorus101 wrote:
make sense, removed. :)
https://github.com/llvm/llvm-project/pull/179409