From c03b4de4198b95672cc6f8a6b7e07c81458c23ff Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Wed, 15 Jun 2022 00:02:54 +0200 Subject: [PATCH] Unnecessary copy warning --- tools/ktx-tool/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ktx-tool/src/main.cpp b/tools/ktx-tool/src/main.cpp index 803b08c115..dca41d705f 100644 --- a/tools/ktx-tool/src/main.cpp +++ b/tools/ktx-tool/src/main.cpp @@ -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";