diff options
| -rw-r--r-- | libcxx/include/thread | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/include/thread b/libcxx/include/thread index e21a09fff03..8d3aab2ae6f 100644 --- a/libcxx/include/thread +++ b/libcxx/include/thread @@ -144,9 +144,11 @@ template <class _Tp> __thread_specific_ptr<_Tp>::__thread_specific_ptr() { int __ec = pthread_key_create(&__key_, &__thread_specific_ptr::__at_thread_exit); +#ifndef _LIBCPP_NO_EXCEPTIONS if (__ec) throw system_error(error_code(__ec, system_category()), "__thread_specific_ptr construction failed"); +#endif } template <class _Tp> |

