1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-21 18:40:01 +00:00

Merge branch 'remove-unused-regionmap-constructor' into 'master'

Minor cleanup: Remove unused regionmap CellDescription constructor

See merge request OpenMW/openmw!3973
This commit is contained in:
Alexei Kotov 2024-03-24 13:08:24 +00:00
commit d7257e056c
2 changed files with 0 additions and 7 deletions

View File

@ -41,11 +41,6 @@ namespace CSMWorld
} }
} }
CSMWorld::RegionMap::CellDescription::CellDescription()
: mDeleted(false)
{
}
CSMWorld::RegionMap::CellDescription::CellDescription(const Record<Cell>& cell, float landHeight) CSMWorld::RegionMap::CellDescription::CellDescription(const Record<Cell>& cell, float landHeight)
{ {
const Cell& cell2 = cell.get(); const Cell& cell2 = cell.get();

View File

@ -45,8 +45,6 @@ namespace CSMWorld
ESM::RefId mRegion; ESM::RefId mRegion;
std::string mName; std::string mName;
CellDescription();
CellDescription(const Record<Cell>& cell, float landHeight); CellDescription(const Record<Cell>& cell, float landHeight);
}; };