Core/Grids: Fix TypeListContainer::Size

This commit is contained in:
Shauren
2025-06-06 11:18:54 +02:00
parent 20ac55ffef
commit f04cc7a8cb

View File

@@ -78,7 +78,7 @@ struct TypeListContainer
}
template <typename ObjectType> requires TypeExists<ObjectType>
bool Size() const
std::size_t Size() const
{
return UnderlyingContainer<ObjectType>::Size(Data.template FindContainer<ObjectType>());
}