aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-06 20:45:49 +0100
committerMax Kellermann <max@duempel.org>2014-02-06 20:52:25 +0100
commitc9fb6f7bdbd7f5b9446fb8fcb8c94df7c02002c1 (patch)
treed9f137dfd3402a2a8c832bb11242ba1f7c24c690 /src/mixer
parentad6b05ae1720fc7295bcc9fe7779df520d1988c1 (diff)
downloadmpd-c9fb6f7bdbd7f5b9446fb8fcb8c94df7c02002c1.tar.gz
mpd-c9fb6f7bdbd7f5b9446fb8fcb8c94df7c02002c1.tar.xz
mpd-c9fb6f7bdbd7f5b9446fb8fcb8c94df7c02002c1.zip
Mixer: make the constructor "explicit"
Diffstat (limited to '')
-rw-r--r--src/mixer/MixerInternal.hxx2
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) {}