Replace boost::noncopyable with C++11 deleted copy constructors

This commit is contained in:
Alejandro Domínguez 2024-08-25 23:41:45 +02:00 committed by Robin Gareus
parent 915200699b
commit 2436b4df06
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
17 changed files with 50 additions and 36 deletions

View file

@ -31,10 +31,12 @@ namespace ARDOUR
{
class Speakers;
class VBAPSpeakers : public boost::noncopyable
class VBAPSpeakers
{
public:
VBAPSpeakers (std::shared_ptr<Speakers>);
VBAPSpeakers (const VBAPSpeakers&) = delete;
VBAPSpeakers& operator= (const VBAPSpeakers&) = delete;
typedef std::vector<double> dvector;