noexcept applied to <condition_variable>.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@160605 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -20,13 +20,13 @@ condition_variable::~condition_variable()
|
||||
}
|
||||
|
||||
void
|
||||
condition_variable::notify_one()
|
||||
condition_variable::notify_one() _NOEXCEPT
|
||||
{
|
||||
pthread_cond_signal(&__cv_);
|
||||
}
|
||||
|
||||
void
|
||||
condition_variable::notify_all()
|
||||
condition_variable::notify_all() _NOEXCEPT
|
||||
{
|
||||
pthread_cond_broadcast(&__cv_);
|
||||
}
|
||||
|
Reference in New Issue
Block a user