1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

Don't need AudacityException::Move, use std::exception_ptr

This commit is contained in:
Paul Licameli
2018-04-16 14:16:11 -04:00
parent f7515c90d8
commit ac373502a9
11 changed files with 11 additions and 50 deletions

View File

@@ -15,12 +15,6 @@ FileException::~FileException()
{
}
std::unique_ptr< AudacityException > FileException::Move()
{
return std::unique_ptr< AudacityException >
{ safenew FileException{ std::move( *this ) } };
}
wxString FileException::ErrorMessage() const
{
wxString format;