[new downloader] Corrections after colleagues comments.

This commit is contained in:
Vladimir Byko-Ianko 2016-02-02 11:30:27 +03:00 committed by Sergey Yershov
parent 2bbfe6a3ea
commit d9de5991ff

View file

@ -112,7 +112,8 @@ public:
SimpleTree<T> const & Child(size_t index) const
{
return m_children.at(index);
ASSERT_LESS(index, m_children.size(), ());
return m_children[index];
}
size_t ChildrenCount() const
@ -124,7 +125,7 @@ public:
template <class TFunctor>
void ForEachChild(TFunctor && f)
{
for (auto const & child : m_children)
for (auto & child : m_children)
f(child);
}
@ -160,7 +161,7 @@ public:
void ForEachInSubtree(TFunctor && f)
{
f(*this);
for (auto const & child: m_children)
for (auto & child: m_children)
child.ForEachInSubtree(f);
}