Commit 2677b902 authored by Max Kellermann's avatar Max Kellermann

db/update/InotifyQueue: add `noexcept`

parent 1b20fa44
......@@ -32,7 +32,7 @@ static constexpr std::chrono::steady_clock::duration INOTIFY_UPDATE_DELAY =
std::chrono::seconds(5);
void
InotifyQueue::OnDelay()
InotifyQueue::OnDelay() noexcept
{
unsigned id;
......
......@@ -42,7 +42,7 @@ public:
void Enqueue(const char *uri_utf8);
private:
void OnDelay();
void OnDelay() noexcept;
};
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment