mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Fix move constructors and assignments of AudacityException classes
This commit is contained in:
@@ -27,8 +27,13 @@ public:
|
||||
|
||||
FileException(FileException&& that)
|
||||
: MessageBoxException(std::move(that))
|
||||
, cause{ that.cause }
|
||||
, fileName{ that.fileName }
|
||||
, renameTarget{ that.renameTarget }
|
||||
{}
|
||||
|
||||
FileException& operator= (FileException&&) PROHIBITED;
|
||||
|
||||
~FileException() override;
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user