Mixer: delete the implicit copy constructor

This commit is contained in:
Max Kellermann 2014-02-06 20:45:41 +01:00
parent c9fb6f7bdb
commit e04090b477
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ public:
open(false),
failed(false) {}
Mixer(const Mixer &) = delete;
bool IsPlugin(const MixerPlugin &other) const {
return &plugin == &other;
}