1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 04:45:36 +00:00

Oups forgot an extra ; not liked by Ubuntu GCC

This commit is contained in:
florent.teppe 2022-07-18 23:32:21 +02:00
parent ede46745b5
commit 0f41ae3b53

View file

@ -53,7 +53,7 @@ namespace MWWorld
mutable std::unordered_map<std::string, std::weak_ptr<MWMechanics::SpellList>, Misc::StringUtils::CiHash, Misc::StringUtils::CiEqual> mSpellListCache;
template <class T>
Store<T>& getWritable() {return static_cast<Store<T>&>(*mStores[GetRecordTypeId(T)]);};
Store<T>& getWritable() {return static_cast<Store<T>&>(*mStores[GetRecordTypeId(T)]);}
/// Validate entries in store after setup
void validate();