Salut,
Si m_children a toujours au - un élément, tu peux faire :

std::vector <Leaf *> LeafVector(m_children.begin()+1,m_children.end());
std::swap(m_children,LeafVector);


Cependant, comme...