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:
parent
c166341ec0
commit
ba281a0da0
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue