diff options
author | Max Kellermann <max@duempel.org> | 2014-02-06 20:45:49 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-06 20:52:25 +0100 |
commit | c9fb6f7bdbd7f5b9446fb8fcb8c94df7c02002c1 (patch) | |
tree | d9f137dfd3402a2a8c832bb11242ba1f7c24c690 /src | |
parent | ad6b05ae1720fc7295bcc9fe7779df520d1988c1 (diff) |
Mixer: make the constructor "explicit"
Diffstat (limited to 'src')
-rw-r--r-- | src/mixer/MixerInternal.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mixer/MixerInternal.hxx b/src/mixer/MixerInternal.hxx index 1524af7f2..340787b5f 100644 --- a/src/mixer/MixerInternal.hxx +++ b/src/mixer/MixerInternal.hxx @@ -46,7 +46,7 @@ public: bool failed; public: - Mixer(const MixerPlugin &_plugin) + explicit Mixer(const MixerPlugin &_plugin) :plugin(_plugin), open(false), failed(false) {} |