cfg: simplify get_nodes

This commit is contained in:
Megamouse 2021-03-20 18:06:45 +01:00 committed by Ivan
parent cb9e7358d2
commit 2c05e9719d
5 changed files with 18 additions and 18 deletions

View file

@ -98,7 +98,7 @@ namespace cfg
// Config tree node which contains another nodes
class node : public _base
{
std::vector<std::pair<std::string, _base*>> m_nodes;
std::vector<_base*> m_nodes;
friend class _base;