forked from organicmaps/organicmaps
[editor] Fix std::min call
This commit is contained in:
parent
6b5b292a4b
commit
b77027ada5
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue