event/IdleMonitor: add "noexcept"

This commit is contained in:
Max Kellermann
2017-11-12 17:40:25 +01:00
parent b57e2f5521
commit cf483107c9
9 changed files with 19 additions and 19 deletions

View File

@@ -145,7 +145,7 @@ private:
bool OnSocketReady(unsigned flags) noexcept override;
/* virtual methods from IdleMonitor */
void OnIdle() override;
void OnIdle() noexcept override;
};
static constexpr struct {
@@ -488,7 +488,7 @@ ProxyDatabase::OnSocketReady(gcc_unused unsigned flags) noexcept
}
void
ProxyDatabase::OnIdle()
ProxyDatabase::OnIdle() noexcept
{
assert(connection != nullptr);