[indexer] Fix compilation for clang

This commit is contained in:
Anatoly Serdtcev 2019-02-01 15:30:29 +03:00 committed by Tatiana Yan
parent e73151d0ae
commit 9468314a46

View file

@ -29,7 +29,7 @@ struct CellIdFeaturePairForTest
uint32_t m_value;
};
auto IndexValueInserter(auto & values)
auto IndexValueInserter(vector<uint32_t> & values)
{
return [inserter = base::MakeBackInsertFunctor(values)] (uint64_t, auto value) { inserter(value); };
};