diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-07-21 16:50:47 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-07-21 16:50:47 +0000 |
commit | 36101a5b0a89ce6646cc576273551faf6a4548b7 (patch) | |
tree | 08f71d58ecf01aedf0d6f91da7ef1af3a8c8bf72 /libcxx/src/thread.cpp | |
parent | 45c663db4e86dfad812c56bd364c4803ff47c160 (diff) | |
download | bcm5719-llvm-36101a5b0a89ce6646cc576273551faf6a4548b7.tar.gz bcm5719-llvm-36101a5b0a89ce6646cc576273551faf6a4548b7.zip |
noexcept applied to <thread>.
llvm-svn: 160606
Diffstat (limited to 'libcxx/src/thread.cpp')
-rw-r--r-- | libcxx/src/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/thread.cpp b/libcxx/src/thread.cpp index f27136a53d0..ffcbe0ab667 100644 --- a/libcxx/src/thread.cpp +++ b/libcxx/src/thread.cpp @@ -52,7 +52,7 @@ thread::detach() } unsigned -thread::hardware_concurrency() +thread::hardware_concurrency() _NOEXCEPT { #if defined(CTL_HW) && defined(HW_NCPU) unsigned n; |