Eigen build fix, Eigen::all has been renamed: (#2399)

Replace deprecated/removed Eigen::all with Eigen::placeholders:all.
This commit is contained in:
Martin Heistermann
2024-10-28 09:19:00 -04:00
committed by GitHub
parent fac5d4a01d
commit 8aca5bd0c4
46 changed files with 109 additions and 109 deletions
@@ -194,7 +194,7 @@ void contours(
Q.col(2), Q.col(3),
Q.col(3), Q.col(0);
igl::per_face_normals(V,I,C,N,VV,FF,J);
NN = N(J,Eigen::all);
NN = N(J,Eigen::placeholders::all);
igl::per_corner_normals(V,I,C,20,N,VV,FF,J,NN);
}