Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-10-17 00:13:43 +0300
committerbubnikv <bubnikv@gmail.com>2016-10-17 00:13:43 +0300
commite8f73134e6567ed2c733167b32b5544768a9de51 (patch)
treea35db000b8e741ae598d9ebdddb44c2b260faf32 /xs/src/libslic3r/Fill
parent75ee1baf1daa6c62e43bab8ed7b5557eb8d5d559 (diff)
Fixed a typo, which broke compilation on GCC.
Diffstat (limited to 'xs/src/libslic3r/Fill')
-rw-r--r--xs/src/libslic3r/Fill/FillBase.hpp2
1 files changed, 1 insertions, 1 deletions
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; }