forked from organicmaps/organicmaps
Using cbegin/cend in classificator.cpp
This commit is contained in:
parent
f6893222b7
commit
108e092011
1 changed files with 1 additions and 1 deletions
|
@ -400,7 +400,7 @@ uint32_t Classificator::GetTypeByPathSafe(vector<string> const & path) const
|
|||
|
||||
uint32_t Classificator::GetTypeByPath(vector<string> const & path) const
|
||||
{
|
||||
uint32_t const type = GetTypeByPathImpl(path.begin(), path.end());
|
||||
uint32_t const type = GetTypeByPathImpl(path.cbegin(), path.cend());
|
||||
ASSERT_NOT_EQUAL(type, 0, (path));
|
||||
return type;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue