forked from organicmaps/organicmaps
Fix warnings for Search
This commit is contained in:
parent
4ae62648f3
commit
675e2312dc
3 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,7 @@ public:
|
|||
virtual ~Iterator() {}
|
||||
|
||||
virtual Iterator<ValueT, EdgeValueT> * Clone() const = 0;
|
||||
virtual Iterator<ValueT, EdgeValueT> * GoToEdge(uint32_t i) const = 0;
|
||||
virtual Iterator<ValueT, EdgeValueT> * GoToEdge(size_t i) const = 0;
|
||||
};
|
||||
|
||||
namespace reader
|
||||
|
|
|
@ -40,7 +40,7 @@ public:
|
|||
return new LeafIterator0<ValueReaderT, EdgeValueT>(*this);
|
||||
}
|
||||
|
||||
Iterator<ValueType, EdgeValueType> * GoToEdge(uint32_t i) const
|
||||
Iterator<ValueType, EdgeValueType> * GoToEdge(size_t i) const
|
||||
{
|
||||
ASSERT(false, (i));
|
||||
UNUSED_VALUE(i);
|
||||
|
@ -86,7 +86,7 @@ public:
|
|||
return new Iterator0<ReaderT, ValueReaderT, EdgeValueReaderT>(*this);
|
||||
}
|
||||
|
||||
Iterator<ValueType, EdgeValueType> * GoToEdge(uint32_t i) const
|
||||
Iterator<ValueType, EdgeValueType> * GoToEdge(size_t i) const
|
||||
{
|
||||
ASSERT_LESS(i, this->m_edge.size(), ());
|
||||
uint32_t const offset = m_edgeInfo[i].m_offset;
|
||||
|
|
|
@ -2227,7 +2227,7 @@ void Query::SearchAllInViewport(m2::RectD const & viewport, Results & res, unsig
|
|||
break;
|
||||
|
||||
MwmSet::MwmId const & mwmId = it->first;
|
||||
for (size_t const offset : it->second)
|
||||
for (uint32_t const offset : it->second)
|
||||
{
|
||||
if (m_cancel)
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue