Unnecessary copy warning

This commit is contained in:
Dale Glass 2022-06-15 00:02:54 +02:00
parent c3789e3ea1
commit c03b4de419

View file

@ -115,7 +115,7 @@ int main(int argc, char** argv) {
if (!destFolder.exists() && !destFolder.mkpath(".")) {
throw std::runtime_error("failed to create output directory");
}
for (const auto ktxFile : SOURCE_FOLDER.entryInfoList(QStringList() << "*.ktx")) {
for (const auto &ktxFile : SOURCE_FOLDER.entryInfoList(QStringList() << "*.ktx")) {
processKtxFile(ktxFile);
}
qDebug() << "Done";