[libcalamares] Remove CommandList destructor

The destructor was just the default one, but declaring it
blocks the default copy constructor.
This commit is contained in:
Adriaan de Groot 2022-05-04 11:38:42 +02:00
parent a7cf1b18ce
commit 1f7b2a3d2d
2 changed files with 0 additions and 3 deletions

View File

@ -150,8 +150,6 @@ CommandList::CommandList::CommandList( const QVariant& v, bool doChroot, std::ch
}
}
CommandList::~CommandList() {}
Calamares::JobResult
CommandList::run()
{

View File

@ -85,7 +85,6 @@ public:
/** @brief empty command-list with timeout to apply to entries. */
CommandList( bool doChroot = true, std::chrono::seconds timeout = std::chrono::seconds( 10 ) );
CommandList( const QVariant& v, bool doChroot = true, std::chrono::seconds timeout = std::chrono::seconds( 10 ) );
~CommandList();
bool doChroot() const { return m_doChroot; }