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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user