mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 10:05:51 +02:00
Unnecessary copy warning
This commit is contained in:
parent
c3789e3ea1
commit
c03b4de419
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue