1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-11-01 19:56:38 +00:00

Remove redundant is_automagicals

This commit is contained in:
Evil Eye 2024-03-01 12:24:36 +01:00
parent 0519e1215f
commit e54decc830
3 changed files with 0 additions and 16 deletions

View file

@ -18,14 +18,6 @@ namespace sol
struct is_automagical<ESM::BirthSign> : std::false_type struct is_automagical<ESM::BirthSign> : std::false_type
{ {
}; };
template <>
struct is_automagical<MWWorld::Store<ESM::BirthSign>> : std::false_type
{
};
template <>
struct is_automagical<ESM::SpellList> : std::false_type
{
};
} }
namespace MWLua namespace MWLua

View file

@ -17,10 +17,6 @@ namespace sol
struct is_automagical<ESM::Class> : std::false_type struct is_automagical<ESM::Class> : std::false_type
{ {
}; };
template <>
struct is_automagical<MWWorld::Store<ESM::Class>> : std::false_type
{
};
} }
namespace MWLua namespace MWLua

View file

@ -35,10 +35,6 @@ namespace sol
{ {
}; };
template <> template <>
struct is_automagical<MWWorld::Store<ESM::Race>> : std::false_type
{
};
template <>
struct is_automagical<RaceAttributes> : std::false_type struct is_automagical<RaceAttributes> : std::false_type
{ {
}; };