forked from organicmaps/organicmaps
Fix bug with std::find usage.
This commit is contained in:
parent
93e05a56b1
commit
c6909b5450
3 changed files with 6 additions and 3 deletions
|
@ -81,7 +81,8 @@ namespace feature
|
|||
|
||||
inline bool Has(uint32_t t) const
|
||||
{
|
||||
return find(m_types, m_types + m_size, t);
|
||||
uint32_t const * e = m_types + m_size;
|
||||
return (find(m_types, e, t) != e);
|
||||
}
|
||||
//@}
|
||||
|
||||
|
|
|
@ -396,7 +396,8 @@ bool UsePopulationRank(uint32_t type)
|
|||
|
||||
bool IsMyType(uint32_t t) const
|
||||
{
|
||||
return find(m_types, m_types + ARRAY_SIZE(m_types), t);
|
||||
uint32_t const * e = m_types + ARRAY_SIZE(m_types);
|
||||
return (find(m_types, e, t) != e);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -256,7 +256,8 @@ namespace
|
|||
|
||||
bool IsMy(uint8_t ind) const
|
||||
{
|
||||
return find(m_index, m_index + ARRAY_SIZE(m_index), ind);
|
||||
uint8_t const * e = m_index + ARRAY_SIZE(m_index);
|
||||
return (find(m_index, e, ind) != e);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue