1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-01 17:34:24 +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

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