From e8f73134e6567ed2c733167b32b5544768a9de51 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Sun, 16 Oct 2016 23:13:43 +0200 Subject: [PATCH] Fixed a typo, which broke compilation on GCC. --- xs/src/libslic3r/Fill/FillBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/Fill/FillBase.hpp b/xs/src/libslic3r/Fill/FillBase.hpp index c3ee734b3..8952c2c75 100644 --- a/xs/src/libslic3r/Fill/FillBase.hpp +++ b/xs/src/libslic3r/Fill/FillBase.hpp @@ -53,7 +53,7 @@ public: public: virtual ~Fill() {} - static Fill* Fill::new_from_type(const InfillPattern type); + static Fill* new_from_type(const InfillPattern type); static Fill* new_from_type(const std::string &type); void set_bounding_box(const Slic3r::BoundingBox &bbox) { bounding_box = bbox; }