1 https://github.com/boostorg/thread/issues/402 2 3 In file included from src/third_party/boost/libs/thread/src/pthread/thread.cpp:19: 4 src/third_party/boost/boost/thread/future.hpp:4672:19: error: no member named 'that' in 'run_it<FutureExecutorContinuationSharedState>'; did you mean 'that_'? 5 4672 | that_=x.that; 6 | ^~~~ 7 8 --- src/third_party/boost/boost/thread/future.hpp.orig 2024-12-12 08:36:29 UTC 9 +++ src/third_party/boost/boost/thread/future.hpp 10 @@ -4669,7 +4669,7 @@ namespace detail 11 } 12 run_it& operator=(BOOST_THREAD_RV_REF(run_it) x) BOOST_NOEXCEPT { 13 if (this != &x) { 14 - that_=x.that; 15 + that_=x.that_; 16 x.that_.reset(); 17 } 18 return *this; 19