Skip to content

Commit 6b5acb8

Browse files
committed
Modify the example according to API changes
1 parent 7b05e71 commit 6b5acb8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Polygon_mesh_processing/examples/Polygon_mesh_processing/mesh_kernel_example.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ int main(int argc, char** argv)
2323

2424
CGAL::Real_timer timer;
2525
timer.start();
26-
Mesh kernel = PMP::kernel(m);
26+
Mesh kernel;
27+
PMP::kernel(m, kernel);
2728
timer.stop();
2829

2930
std::cout << "Kernel computation of " << fname << " done in " << timer.time() << std::endl;

0 commit comments

Comments
 (0)