TopoNaming: Enable migration code for 1.0.X -> 1.1 (#26538)

This commit is contained in:
drwho495
2025-12-30 06:24:09 -06:00
committed by GitHub
parent 5dbc5ab0a6
commit 496243d40a
2 changed files with 7 additions and 3 deletions

View File

@@ -200,12 +200,12 @@ const std::string& ComplexGeoData::elementMapPrefix()
std::string ComplexGeoData::getElementMapVersion() const
{
return "4";
return "5";
}
bool ComplexGeoData::checkElementMapVersion(const char* ver) const
{
return !boost::equals(ver, "3") && !boost::equals(ver, "4") && !boost::starts_with(ver, "3.");
return !boost::ends_with(ver, "5");
}
size_t ComplexGeoData::getElementMapSize(bool flush) const