db/update/InotifyQueue: add noexcept

This commit is contained in:
Max Kellermann 2018-12-28 13:46:47 +01:00
parent 1b20fa441d
commit 2677b90244
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ static constexpr std::chrono::steady_clock::duration INOTIFY_UPDATE_DELAY =
std::chrono::seconds(5); std::chrono::seconds(5);
void void
InotifyQueue::OnDelay() InotifyQueue::OnDelay() noexcept
{ {
unsigned id; unsigned id;

View File

@ -42,7 +42,7 @@ public:
void Enqueue(const char *uri_utf8); void Enqueue(const char *uri_utf8);
private: private:
void OnDelay(); void OnDelay() noexcept;
}; };
#endif #endif