diff --git a/t/perimeters.t b/t/perimeters.t index d3f96f122..50aad45d6 100644 --- a/t/perimeters.t +++ b/t/perimeters.t @@ -51,7 +51,7 @@ use Slic3r::Test; ($fill_surfaces = Slic3r::Surface::Collection->new), ); $g->config->apply_dynamic($config); - $g->process; + $g->process_classic; is scalar(@$loops), scalar(@$expolygons), 'expected number of collections'; diff --git a/xs/xsp/PerimeterGenerator.xsp b/xs/xsp/PerimeterGenerator.xsp index a2f589d0b..91c6af532 100644 --- a/xs/xsp/PerimeterGenerator.xsp +++ b/xs/xsp/PerimeterGenerator.xsp @@ -36,5 +36,5 @@ Ref config() %code{% RETVAL = THIS->config; %}; - void process(); + void process_classic(); };