Skip to content

Commit

Permalink
Merge pull request #13397 from Swiftb0y/fix/engine-prime-build-failure
Browse files Browse the repository at this point in the history
fix(engine-prime): build-failure
  • Loading branch information
daschuer committed Jun 25, 2024
2 parents ab518aa + 69bda20 commit 133030e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/library/export/engineprimeexportjob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,10 @@ EnginePrimeExportJob::EnginePrimeExportJob(
}
}

// out-of-line declaration because we can't generate dtor in
// header with unique_ptr's of incomplete types.
EnginePrimeExportJob::~EnginePrimeExportJob() = default;

void EnginePrimeExportJob::loadIds(const QSet<CrateId>& crateIds) {
DEBUG_ASSERT_QOBJECT_THREAD_AFFINITY(m_pTrackCollectionManager);

Expand Down
2 changes: 2 additions & 0 deletions src/library/export/engineprimeexportjob.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ class EnginePrimeExportJob : public QThread {
TrackCollectionManager* pTrackCollectionManager,
QSharedPointer<EnginePrimeExportRequest> pRequest);

~EnginePrimeExportJob() override;

/// Run the export job.
void run() override;

Expand Down

0 comments on commit 133030e

Please sign in to comment.