1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Prohibit copy construction of Sequence

This commit is contained in:
Paul Licameli 2020-07-07 02:01:11 -04:00
parent 558d4bbc3d
commit 2c0c08f86a

View File

@ -65,6 +65,7 @@ class PROFILE_DLL_API Sequence final : public XMLTagHandler{
Sequence(const Sequence &orig, const SampleBlockFactoryPtr &pFactory);
Sequence( const Sequence& ) = delete;
Sequence& operator= (const Sequence&) PROHIBITED;
~Sequence();