Fix msvc build

This commit is contained in:
Ivan Savenko
2022-12-13 16:54:49 +02:00
parent 55d0f0ad9f
commit d94076c618
+1 -1
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());
}