Fix debug build, there was obsolete assert
This commit is contained in:
parent
a430aa41ba
commit
6b41e5d9b1
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ namespace Slic3r {
|
|||
ThickPolylines make_fill_polylines(
|
||||
const Fill *fill, const Surface *surface, const FillParams ¶ms, bool stop_vibrations, bool fill_gaps, bool connect_extrusions)
|
||||
{
|
||||
assert(fill->print_config != nullptr && fill->print_object_config != nullptr && fill->print_region_config != nullptr);
|
||||
assert(fill->print_config != nullptr && fill->print_object_config != nullptr);
|
||||
|
||||
auto rotate_thick_polylines = [](ThickPolylines &tpolylines, double cos_angle, double sin_angle) {
|
||||
for (ThickPolyline &tp : tpolylines) {
|
||||
|
|
Loading…
Reference in a new issue