1
0
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:
Paul Licameli
2017-03-21 12:45:04 -04:00
parent e9a4fc8354
commit 7927fe065f
6 changed files with 19 additions and 6 deletions

View File

@@ -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: