From a4d35ce2bffaa29664ea19b0dfd97595978def3e Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Thu, 28 Mar 2013 15:00:04 +0000 Subject: Add missing #ifndef _LIBCPP_NO_EXCEPTIONS around throw in include/thread. llvm-svn: 178237 --- libcxx/include/thread | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libcxx/include/thread') 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 __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 -- cgit v1.2.3