Using cbegin/cend in classificator.cpp

This commit is contained in:
VladiMihaylenko 2019-03-01 19:04:49 +03:00
parent f6893222b7
commit 108e092011

View file

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