diff options
Diffstat (limited to 'libcxx/include/thread')
-rw-r--r-- | libcxx/include/thread | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/thread b/libcxx/include/thread index 94e7ab6c54c..60d8885951d 100644 --- a/libcxx/include/thread +++ b/libcxx/include/thread @@ -173,13 +173,13 @@ __thread_specific_ptr<_Tp>::reset(pointer __p) delete __p_old; } -class thread; -class __thread_id; +class _LIBCPP_VISIBLE thread; +class _LIBCPP_VISIBLE __thread_id; namespace this_thread { -__thread_id get_id() _NOEXCEPT; +_LIBCPP_INLINE_VISIBILITY __thread_id get_id() _NOEXCEPT; } // this_thread |