From 2debffc49629b57f8e5751bab4b363d11f7e7e67 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hejl?= <hejl.lukas@gmail.com>
Date: Thu, 3 Sep 2020 07:52:53 +0200
Subject: [PATCH] Fix tests which expect make_fills without arguments

---
 src/libslic3r/Layer.hpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/libslic3r/Layer.hpp b/src/libslic3r/Layer.hpp
index 4c824a109..014d2623a 100644
--- a/src/libslic3r/Layer.hpp
+++ b/src/libslic3r/Layer.hpp
@@ -138,6 +138,7 @@ public:
         return false;
     }
     void                    make_perimeters();
+    void                    make_fills() { this->make_fills(nullptr); };
     void                    make_fills(FillAdaptive_Internal::Octree* adaptive_fill_octree);
     void 					make_ironing();