diff --git a/search/retrieval.cpp b/search/retrieval.cpp index ba646234b4..7b688ff482 100644 --- a/search/retrieval.cpp +++ b/search/retrieval.cpp @@ -80,13 +80,13 @@ public: template void ForEachModifiedOrCreated(TFn && fn) { - ReadFeatures(m_modified, fn); - ReadFeatures(m_created, fn); + ForEach(m_modified, fn); + ForEach(m_created, fn); } private: template - void ReadFeatures(vector const & features, TFn & fn) + void ForEach(vector const & features, TFn & fn) { auto & editor = Editor::Instance(); for (auto const index : features)