diff options
Diffstat (limited to 'src/output/Control.hxx')
-rw-r--r-- | src/output/Control.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/output/Control.hxx b/src/output/Control.hxx index d2b5c83e4..ecf9388f1 100644 --- a/src/output/Control.hxx +++ b/src/output/Control.hxx @@ -212,10 +212,10 @@ public: mutable Mutex mutex; AudioOutputControl(FilteredAudioOutput *_output, - AudioOutputClient &_client); + AudioOutputClient &_client) noexcept; #ifndef NDEBUG - ~AudioOutputControl() { + ~AudioOutputControl() noexcept { assert(!fail_timer.IsDefined()); assert(!thread.IsDefined()); assert(output == nullptr); @@ -490,7 +490,7 @@ private: /** * Caller must lock the mutex. */ - bool FillSourceOrClose(); + bool FillSourceOrClose() noexcept; /** * Caller must lock the mutex. @@ -528,7 +528,7 @@ private: /** * The OutputThread. */ - void Task(); + void Task() noexcept; }; #endif |