Skip to content
Snippets Groups Projects
Commit 4d96bdb6 authored by patavirt's avatar patavirt
Browse files

array: fix 0d instantiation again

parent 8c50402d
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ private:
static constexpr Eigen::Index eigen_shape()
{
/* bad Shape handled in matrix() */
size_t n = (axis == 0 || Shape::ndim < 2) ? Shape::head : Shape::Tail::head;
size_t n = (axis == 0) ? Shape::head : Shape::Tail::head;
return (n == Dynamic) ? Eigen::Dynamic : n;
}
......
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