aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-06 20:45:41 +0100
committerMax Kellermann <max@duempel.org>2014-02-06 20:52:25 +0100
commite04090b477a6ec3c18b43250cf2ea37985057455 (patch)
tree33cf59fbc7449f894c5550af1d89702629131732 /src/mixer
parentc9fb6f7bdbd7f5b9446fb8fcb8c94df7c02002c1 (diff)
downloadmpd-e04090b477a6ec3c18b43250cf2ea37985057455.tar.gz
mpd-e04090b477a6ec3c18b43250cf2ea37985057455.tar.xz
mpd-e04090b477a6ec3c18b43250cf2ea37985057455.zip
Mixer: delete the implicit copy constructor
Diffstat (limited to '')
-rw-r--r--src/mixer/MixerInternal.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mixer/MixerInternal.hxx b/src/mixer/MixerInternal.hxx
index 340787b5f..5d1ad1362 100644
--- a/src/mixer/MixerInternal.hxx
+++ b/src/mixer/MixerInternal.hxx
@@ -51,6 +51,8 @@ public:
open(false),
failed(false) {}
+ Mixer(const Mixer &) = delete;
+
bool IsPlugin(const MixerPlugin &other) const {
return &plugin == &other;
}