Remove the `forest_const_iterator` explicitly-declared copy constructor:
Opened this issue · 2 comments
fpelliccioni commented
Remove the forest_const_iterator
explicitly-declared copy constructor:
forest_const_iterator(const forest_const_iterator& x) : _node(x._node), _edge(x._edge) {}
Here:
https://github.com/stlab/libraries/blob/develop/stlab/forest.hpp#L634
Let the compiler do it.
dabrahams commented
Contributions welcome!