1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-17 19:20:49 +00:00

Merge branch 'fix_coverity_issues' into 'master'

Fix coverity issues

See merge request OpenMW/openmw!1513
This commit is contained in:
jvoisin 2021-12-27 16:08:00 +00:00
commit 91b2e20477
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;
}