Commit b07bddf7 authored by Max Kellermann's avatar Max Kellermann

output/roar: remove unnecessary "volatile" keyword

A mutex acts as a memory barrier, and thus "volatile" is not necessary.
parent 220f957c
......@@ -46,7 +46,7 @@ class RoarOutput {
struct roar_connection con;
struct roar_audio_info info;
mutable Mutex mutex;
volatile bool alive;
bool alive;
public:
RoarOutput()
......
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