Removing unused index ref.

This commit is contained in:
Vladimir Byko-Ianko 2017-07-14 11:40:08 +03:00 committed by Vladimir Byko-Ianko
parent 93b13730ae
commit ae0b20867c
2 changed files with 1 additions and 2 deletions

View file

@ -17,7 +17,7 @@ Time FromDaysAgo(Time time, uint32_t days)
}
} // namespace
Api::Api(Index const & index, std::string const & filename) : m_index(index), m_storage(filename) {}
Api::Api(Index const & index, std::string const & filename) : m_storage(filename) {}
void Api::GetUGC(FeatureID const & id, UGCCallback callback)
{

View file

@ -34,7 +34,6 @@ private:
void SetUGCUpdateImpl(FeatureID const & id, UGCUpdate const & ugc);
Index const & m_index;
base::WorkerThread m_thread;
Storage m_storage;
};