From bdde96867705d9cbfc0b95f5864d6bc6357c52fd Mon Sep 17 00:00:00 2001 From: Marco Feuerstein Date: Tue, 4 Jul 2023 12:29:17 +0200 Subject: [PATCH] Address reviewer comment. --- code/Common/BaseImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Common/BaseImporter.cpp b/code/Common/BaseImporter.cpp index a37297b9a..d03b2adfc 100644 --- a/code/Common/BaseImporter.cpp +++ b/code/Common/BaseImporter.cpp @@ -244,7 +244,7 @@ void BaseImporter::GetExtensionList(std::set &extensions) { // GetExtension() returns the part after the *last* dot, but some extensions // have dots inside them, e.g. ogre.mesh.xml. Compare the entire end of the // string. - for (std::set::const_iterator it = extensions.cbegin(); it != extensions.cend(); ++it) { + for (auto it = extensions.cbegin(); it != extensions.cend(); ++it) { // Yay for C++<20 not having std::string::ends_with() const std::string extension = "." + *it; if (extension.length() > pFile.length()) continue;