The `mlpack::det::DTree` class doesn't implement a copy constructor, move 
constructor, or copy assignment operator, meaning that if I do this:

```
DTree a = std::move(b); // b is another DTree
```

the child pointers of `b` aren't properly updated.  So, these constructors and 
assignment operators need to be added.

`DTree` can be found in `src/mlpack/methods/det/dtree.hpp`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/issues/817
_______________________________________________
mlpack mailing list
[email protected]
http://knife.lugatgt.org/cgi-bin/mailman/listinfo/mlpack

Reply via email to