Skip to content

Commit

Permalink
fix iterator #73 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu authored Sep 29, 2021
1 parent 533328d commit 5b03ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epf/Epf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5b03ed1

Please sign in to comment.