Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2010-10-14 23:18:04 +0400
committerHoward Hinnant <hhinnant@apple.com>2010-10-14 23:18:04 +0400
commit10e4a48a2666d48f9acf8ed6494a863463c90183 (patch)
tree28887508fc3daa0a183afaf25d0d6a9b8ac94ea9 /libcxx/include/future
parenteafcb27ded221399df5e6eb1af4f498250b35eec (diff)
Convert __thread_local_data to the singleton pattern
llvm-svn: 116500
Diffstat (limited to 'libcxx/include/future')
-rw-r--r--libcxx/include/future4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/future b/libcxx/include/future
index d482577e525a..5e53a96b51be 100644
--- a/libcxx/include/future
+++ b/libcxx/include/future
@@ -677,7 +677,7 @@ __assoc_state<_R>::set_value_at_thread_exit(_Arg& __arg)
throw future_error(make_error_code(future_errc::promise_already_satisfied));
::new(&__value_) _R(_STD::forward<_Arg>(__arg));
this->__state_ |= base::__constructed;
- __thread_local_data->__make_ready_at_thread_exit(this);
+ __thread_local_data()->__make_ready_at_thread_exit(this);
__lk.unlock();
}
@@ -750,7 +750,7 @@ __assoc_state<_R&>::set_value_at_thread_exit(_R& __arg)
throw future_error(make_error_code(future_errc::promise_already_satisfied));
__value_ = &__arg;
this->__state_ |= base::__constructed;
- __thread_local_data->__make_ready_at_thread_exit(this);
+ __thread_local_data()->__make_ready_at_thread_exit(this);
__lk.unlock();
}