summaryrefslogtreecommitdiff
path: root/src/thread
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-08-02 07:25:13 +0200
committerMax Kellermann <max@musicpd.org>2019-08-03 12:57:56 +0200
commit8f981845dc7376824d94fd24924788c582942929 (patch)
tree917a57b27067e0082f5a3f4df70fd77e479e3a1e /src/thread
parentc764b70b3a9a74afd12c53932194ec84d6e440d0 (diff)
switch to C++17
Time to move on, two years after 2017.
Diffstat (limited to 'src/thread')
-rw-r--r--src/thread/Thread.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/Thread.hxx b/src/thread/Thread.hxx
index 7cfe8f710..bcb385c36 100644
--- a/src/thread/Thread.hxx
+++ b/src/thread/Thread.hxx
@@ -32,7 +32,7 @@
#include <assert.h>
class Thread {
- typedef BoundMethod<void()> Function;
+ typedef BoundMethod<void() noexcept> Function;
const Function f;
#ifdef _WIN32