From ab9f231c0c303511cfb565738fa7e05a7dcf37d2 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 18 Oct 2022 17:52:00 +0200 Subject: [PATCH] Fix broken compilation --- src/libslic3r/SLAPrintSteps.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libslic3r/SLAPrintSteps.cpp b/src/libslic3r/SLAPrintSteps.cpp index 74041c6358..a024a799c0 100644 --- a/src/libslic3r/SLAPrintSteps.cpp +++ b/src/libslic3r/SLAPrintSteps.cpp @@ -176,10 +176,6 @@ void SLAPrint::Steps::hollow_model(SLAPrintObject &po) ctl.stopcondition = [this]() { return canceled(); }; ctl.cancelfn = [this]() { throw_if_canceled(); }; - sla::JobController ctl; - ctl.stopcondition = [this]() { return canceled(); }; - ctl.cancelfn = [this]() { throw_if_canceled(); }; - sla::InteriorPtr interior = generate_interior(range(po.m_mesh_to_slice), hlwcfg, ctl);