Fix bug with std::find usage.

This commit is contained in:
vng 2012-02-16 18:40:13 +03:00 committed by Alex Zolotarev
parent 93e05a56b1
commit c6909b5450
3 changed files with 6 additions and 3 deletions

View file

@ -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);
}
//@}

View file

@ -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);
}
};

View file

@ -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);
}
};
}