mark AtomicCondition::notify_all noexcept

std::condition_variable::notify_all is noexcept
This commit is contained in:
Tom 2019-09-15 21:51:49 +02:00
parent 076e77ff53
commit 544614b637

View File

@ -47,7 +47,7 @@ public:
return;
}
void notify_all()
void notify_all() noexcept
{
this->condvar_.notify_all();
}