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:
authorVojtech Bubnik <bubnikv@gmail.com>2021-05-24 16:12:04 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-05-24 16:12:04 +0300
commitc8bdc62af42dfd94b5afc69607b16c59c067ad57 (patch)
treed9f9fb6d77ccce3e422af66cc97d5db01ba22b71
parent04014db136427c2f1d032cb46335c200adca9e81 (diff)
Fixing compilation on Linux
-rw-r--r--src/libslic3r/PrintApply.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libslic3r/PrintApply.cpp b/src/libslic3r/PrintApply.cpp
index 1c22d5f01..e5218ba3a 100644
--- a/src/libslic3r/PrintApply.cpp
+++ b/src/libslic3r/PrintApply.cpp
@@ -413,6 +413,7 @@ public:
struct iterator_range : std::pair<const_iterator, const_iterator>
{
using std::pair<const_iterator, const_iterator>::pair;
+ iterator_range(const std::pair<const_iterator, const_iterator> in) : std::pair<const_iterator, const_iterator>(in) {}
const_iterator begin() throw() { return this->first; }
const_iterator end() throw() { return this->second; }