Review fixes.

This commit is contained in:
Yuri Gorshenin 2016-04-24 14:20:25 +03:00
parent a755b22ece
commit 4effcd9a82

View file

@ -80,13 +80,13 @@ public:
template <typename TFn>
void ForEachModifiedOrCreated(TFn && fn)
{
ReadFeatures(m_modified, fn);
ReadFeatures(m_created, fn);
ForEach(m_modified, fn);
ForEach(m_created, fn);
}
private:
template <typename TFn>
void ReadFeatures(vector<uint32_t> const & features, TFn & fn)
void ForEach(vector<uint32_t> const & features, TFn & fn)
{
auto & editor = Editor::Instance();
for (auto const index : features)