1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-05-28 16:41:32 +00:00

Merge branch 'fix_gcc_warning' into 'master'

Fix gcc warning: -Wuninitialized

See merge request OpenMW/openmw!1869
This commit is contained in:
psi29a 2022-05-19 11:00:32 +00:00
commit 33746c4b70

View file

@ -98,13 +98,13 @@ namespace CSMWorld
NestedIdCollection<ESM::Enchantment> mEnchantments;
IdCollection<ESM::BodyPart> mBodyParts;
IdCollection<ESM::MagicEffect> mMagicEffects;
SubCellCollection<Pathgrid> mPathgrids;
IdCollection<ESM::DebugProfile> mDebugProfiles;
IdCollection<ESM::SoundGenerator> mSoundGens;
IdCollection<ESM::StartScript> mStartScripts;
NestedInfoCollection mTopicInfos;
InfoCollection mJournalInfos;
NestedIdCollection<Cell> mCells;
SubCellCollection<Pathgrid> mPathgrids;
IdCollection<LandTexture> mLandTextures;
IdCollection<Land> mLand;
RefIdCollection mReferenceables;