Fix tests, slip in TNP defense

This commit is contained in:
bgbsww
2024-05-07 11:50:08 -04:00
parent 3ee0530ac2
commit 9fc744fbe3
4 changed files with 133 additions and 98 deletions

View File

@@ -685,7 +685,7 @@ void ComplexGeoData::dumpElementMap(std::ostream& stream) const
{
auto map = getElementMap();
std::sort(map.begin(), map.end());
for ( auto element : map ) {
for ( auto& element : map ) {
stream << element.index << " : " << element.name << std::endl;
}
}