SignalHandler: mark destructor noexcept

This commit is contained in:
Tom 2020-07-17 15:43:28 +02:00
parent d10857c13d
commit cc4305ace3

View File

@ -48,7 +48,7 @@ public:
std::string("pthread_sigmask: ") + std::strerror(s));
}
~SignalHandler()
~SignalHandler() noexcept
{
pthread_sigmask(SIG_UNBLOCK, &this->set_, nullptr);
}