From 9ea81a9dbfcde165b5dab56bf4c8c1f07825c4d1 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Wed, 1 Dec 2021 19:24:23 +0100 Subject: [PATCH] Fixing Perl unit tests --- src/libslic3r/Layer.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/Layer.hpp b/src/libslic3r/Layer.hpp index bb652d8a04..516b6da9b1 100644 --- a/src/libslic3r/Layer.hpp +++ b/src/libslic3r/Layer.hpp @@ -148,6 +148,8 @@ public: return false; } void make_perimeters(); + // Phony version of make_fills() without parameters for Perl integration only. + void make_fills() { this->make_fills(nullptr, nullptr); } void make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive::Octree* support_fill_octree); void make_ironing();