bugfix in ei_unaligned_type copy ctor
diff --git a/Eigen/src/StdVector/UnalignedType.h b/Eigen/src/StdVector/UnalignedType.h index 6ceeddd..73cb5e9 100644 --- a/Eigen/src/StdVector/UnalignedType.h +++ b/Eigen/src/StdVector/UnalignedType.h
@@ -36,6 +36,7 @@ typedef Matrix<_Scalar,_Rows,_Cols,_Options,_MaxRows,_MaxCols> aligned_base; ei_unaligned_type() : aligned_base(ei_constructor_without_unaligned_array_assert()) {} ei_unaligned_type(const aligned_base& other) + : aligned_base(ei_constructor_without_unaligned_array_assert()) { resize(other.rows(), other.cols()); ei_assign_impl<ei_unaligned_type,aligned_base,NoVectorization>::run(*this, other);