[editor] Fix std::min call

This commit is contained in:
Ilya Zverev 2016-03-24 19:20:31 +03:00
parent 6b5b292a4b
commit b77027ada5

View file

@ -275,7 +275,7 @@ string ChangesetWrapper::TypeCountToString(TTypeCount const & typeCount)
});
ostringstream ss;
auto const limit = min(3UL, items.size());
auto const limit = min(size_t(3), items.size());
for (auto i = 0; i < limit; ++i)
{
if (i > 0)