1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-17 19:50:34 +02:00

Bug2442 residual: Review AudacityException classes...

... Have copy constructors only (no moves); disallow all assignments
This commit is contained in:
Paul Licameli
2020-06-05 13:43:10 -04:00
parent 13ec3300a9
commit 4a56af43aa
6 changed files with 18 additions and 50 deletions

View File

@@ -21,12 +21,6 @@ class UserException final : public AudacityException
public:
UserException() {}
UserException(UserException &&that)
: AudacityException{ std::move( that ) }
{}
UserException& operator= (UserException&&) PROHIBITED;
~UserException() override;
void DelayedHandlerAction() override;