Skip to content

Commit

Permalink
Fix compilation on older gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel authored and lordofhyphens committed Nov 29, 2018
1 parent 76d3813 commit 9b6bd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xs/src/libslic3r/Print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Print::make_skirt()
skirts = 1;

const std::set<size_t> extruders{ this->extruders() };
auto extruder_it { extruders.begin() };
auto extruder_it = extruders.begin();
std::vector<float> e_per_mm{0}, extruded_length{0};
if (this->config.min_skirt_length() > 0)
for (auto i : extruders)
Expand Down

0 comments on commit 9b6bd5d

Please sign in to comment.