1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Fix msvc build

This commit is contained in:
Ivan Savenko 2022-12-13 16:54:49 +02:00
parent 55d0f0ad9f
commit d94076c618

View File

@ -544,7 +544,7 @@ namespace vstd
}
template <typename Container, typename Item>
bool erase(Container &c, const Item &item)
void erase(Container &c, const Item &item)
{
c.erase(boost::remove(c, item), c.end());
}