From c8bdc62af42dfd94b5afc69607b16c59c067ad57 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Mon, 24 May 2021 15:12:04 +0200 Subject: [PATCH] Fixing compilation on Linux --- src/libslic3r/PrintApply.cpp | 1 + 1 file changed, 1 insertion(+) 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 { using std::pair::pair; + iterator_range(const std::pair in) : std::pair(in) {} const_iterator begin() throw() { return this->first; } const_iterator end() throw() { return this->second; }