diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-08-19 15:13:16 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-08-19 15:13:16 +0000 |
commit | e4b2a743b8ce6b73d80fc799610183aa5307e677 (patch) | |
tree | 39ac813aada4b06459c7b44abb031f182c939343 /libcxx/include/thread | |
parent | 178250ad877bb213e88b89027c6828318f389f5f (diff) | |
download | bcm5719-llvm-e4b2a743b8ce6b73d80fc799610183aa5307e677.tar.gz bcm5719-llvm-e4b2a743b8ce6b73d80fc799610183aa5307e677.zip |
Patch contributed by Dev Dude for mingw64 port.
llvm-svn: 162188
Diffstat (limited to 'libcxx/include/thread')
-rw-r--r-- | libcxx/include/thread | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/thread b/libcxx/include/thread index b6b70003edb..d81e8537888 100644 --- a/libcxx/include/thread +++ b/libcxx/include/thread @@ -227,7 +227,7 @@ private: _LIBCPP_INLINE_VISIBILITY __thread_id(pthread_t __id) : __id_(__id) {} - friend __thread_id this_thread::get_id(); + friend __thread_id this_thread::get_id() _NOEXCEPT; friend class _LIBCPP_VISIBLE thread; friend struct _LIBCPP_VISIBLE hash<__thread_id>; }; |