mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 21:12:42 +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(".")) {
|
if (!destFolder.exists() && !destFolder.mkpath(".")) {
|
||||||
throw std::runtime_error("failed to create output directory");
|
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);
|
processKtxFile(ktxFile);
|
||||||
}
|
}
|
||||||
qDebug() << "Done";
|
qDebug() << "Done";
|
||||||
|
|
Loading…
Reference in a new issue