Skip to content

Commit

Permalink
Replace auto with explicit type
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Mar 25, 2021
1 parent b6e4a2c commit 764c285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/export/engineprimeexportjob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ void EnginePrimeExportJob::loadIds(const QSet<CrateId>& crateIds) {
const auto dirInfos = m_pTrackCollectionManager->internalCollection()
->getDirectoryDAO()
.loadAllDirectories();
for (const auto& dirInfo : dirInfos) {
for (const mixxx::FileInfo& dirInfo : dirInfos) {
const auto trackRefsFromDir = m_pTrackCollectionManager
->internalCollection()
->getTrackDAO()
Expand Down

0 comments on commit 764c285

Please sign in to comment.