mixer/Internal: use C++11 initializers

This commit is contained in:
Max Kellermann 2017-06-08 21:42:39 +02:00
parent 7467b85019
commit 011106b517

View File

@ -42,19 +42,17 @@ public:
/**
* Is the mixer device currently open?
*/
bool open;
bool open = false;
/**
* Has this mixer failed, and should not be reopened
* automatically?
*/
bool failed;
bool failed = false;
public:
explicit Mixer(const MixerPlugin &_plugin, MixerListener &_listener)
:plugin(_plugin), listener(_listener),
open(false),
failed(false) {}
:plugin(_plugin), listener(_listener) {}
Mixer(const Mixer &) = delete;