From 5b03ed1b07dd8592763eb014d970e9c0434434b1 Mon Sep 17 00:00:00 2001 From: Howard Butler Date: Wed, 29 Sep 2021 08:58:54 -0500 Subject: [PATCH] fix iterator #73 (#74) --- epf/Epf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epf/Epf.cpp b/epf/Epf.cpp index 200b4ff..f38d621 100644 --- a/epf/Epf.cpp +++ b/epf/Epf.cpp @@ -209,7 +209,7 @@ PointCount Epf::createFileInfo(const StringList& input, StringList dimNames, { for (std::string& d : dimNames) d = Utils::toupper(d); - for (const std::string& xyz : { "X", "Y", "Z" }) + for (const std::string xyz : { "X", "Y", "Z" }) if (!Utils::contains(dimNames, xyz)) dimNames.push_back(xyz); }