1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-19 15:09:43 +00:00

Fix coverity issues

This commit is contained in:
elsid 2021-12-27 16:08:00 +00:00 committed by jvoisin
parent c166341ec0
commit ba281a0da0
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ namespace NavMeshTool
public:
std::atomic_size_t mExpected {0};
explicit NavMeshTileConsumer(NavMeshDb db)
explicit NavMeshTileConsumer(NavMeshDb&& db)
: mDb(std::move(db))
, mTransaction(mDb.startTransaction())
, mNextTileId(mDb.getMaxTileId() + 1)

View file

@ -246,7 +246,7 @@ namespace NavMeshTool
if (!exterior && !processInteriorCells)
{
Log(Debug::Info) << "Skipped " << (exterior ? "exterior" : "interior")
Log(Debug::Info) << "Skipped interior"
<< " cell (" << (i + 1) << "/" << esmData.mCells.size() << ") \"" << cell.getDescription() << "\"";
continue;
}