diff --git a/t/perimeters.t b/t/perimeters.t index d3f96f122d..50aad45d6d 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 a2f589d0b2..91c6af5329 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(); };