Partition, ...: add noexcept to callback methods

This commit is contained in:
Max Kellermann
2019-08-02 14:44:00 +02:00
parent af99f9fc90
commit fe2f8c088a
6 changed files with 6 additions and 6 deletions

View File

@@ -106,7 +106,7 @@ UpdateService::CancelMount(const char *uri)
}
inline void
UpdateService::Task()
UpdateService::Task() noexcept
{
assert(walk != nullptr);

View File

@@ -110,7 +110,7 @@ private:
void RunDeferred() noexcept;
/* the update thread */
void Task();
void Task() noexcept;
void StartThread(UpdateQueueItem &&i);