1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-22 12:39:59 +00:00

More Coverity fixes

This commit is contained in:
Andrei Kortunov 2023-08-09 15:50:44 +04:00
parent 84e71f4977
commit e749461d06
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ namespace
struct AddSpan : AddContent struct AddSpan : AddContent
{ {
AddSpan(MWGui::BookTypesetter::Ptr typesetter, MWGui::BookTypesetter::Style* body_style) AddSpan(MWGui::BookTypesetter::Ptr typesetter, MWGui::BookTypesetter::Style* body_style)
: AddContent(typesetter, body_style) : AddContent(std::move(typesetter), body_style)
{ {
} }
@ -159,7 +159,7 @@ namespace MWGui
typedef TypesetBook::Ptr book; typedef TypesetBook::Ptr book;
JournalBooks::JournalBooks(JournalViewModel::Ptr model, ToUTF8::FromType encoding) JournalBooks::JournalBooks(JournalViewModel::Ptr model, ToUTF8::FromType encoding)
: mModel(model) : mModel(std::move(model))
, mEncoding(encoding) , mEncoding(encoding)
, mIndexPagesCount(0) , mIndexPagesCount(0)
{ {

View File

@ -465,7 +465,7 @@ void MWMechanics::NpcStats::writeState(ESM::NpcStats& state) const
{ {
// TODO extend format // TODO extend format
auto index = ESM::Skill::refIdToIndex(id); auto index = ESM::Skill::refIdToIndex(id);
value.writeState(state.mSkills[index]); value.writeState(state.mSkills[static_cast<unsigned int>(index)]);
} }
state.mIsWerewolf = mIsWerewolf; state.mIsWerewolf = mIsWerewolf;