diff options
author | Max Kellermann <max@musicpd.org> | 2019-04-25 18:33:09 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-04-25 19:46:43 +0200 |
commit | b51bae5500f8c9cc37708ca5130c9ee9866a0704 (patch) | |
tree | 8980f518daedc24a3b3f548738884e59aadd0d32 /src/input/BufferedInputStream.hxx | |
parent | 5bc8cd0ecbc06ed46335e01037412a66fd3811ae (diff) |
thread/*Cond: rename methods to match std::condition_variable
Diffstat (limited to 'src/input/BufferedInputStream.hxx')
-rw-r--r-- | src/input/BufferedInputStream.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/BufferedInputStream.hxx b/src/input/BufferedInputStream.hxx index a04c9e9ae..46a85a470 100644 --- a/src/input/BufferedInputStream.hxx +++ b/src/input/BufferedInputStream.hxx @@ -99,7 +99,7 @@ public: } void OnInputStreamAvailable() noexcept override { - wake_cond.signal(); + wake_cond.notify_one(); } private: |