diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp index 21d484457d..f386f7e2bf 100644 --- a/indexer/classificator.cpp +++ b/indexer/classificator.cpp @@ -415,9 +415,7 @@ uint32_t Classificator::GetTypeByPath(initializer_list const & lst uint32_t Classificator::GetTypeByReadableObjectName(string const & name) const { ASSERT(!name.empty(), ()); - vector v; - strings::Tokenize(name, "-", [&v] (string const & s) { v.push_back(s); } ); - return GetTypeByPathSafe(v); + return GetTypeByPathSafe(strings::Tokenize(name, "-")); } void Classificator::ReadTypesMapping(istream & s)