Skip to content
Snippets Groups Projects
Commit 26a1239b authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[eigen] add missing copy ctor

parent d4a1b279
No related branches found
No related tags found
No related merge requests found
......@@ -133,6 +133,11 @@ private:
typedef typename BackendType::Index EIGEN_size_t;
public:
EigenDenseVector(const ThisType& other)
{
backend_ = other.backend_;
}
explicit EigenDenseVector(const size_t ss = 0, const ScalarType value = ScalarType(0))
{
backend_ = std::make_shared<BackendType>(ss);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment