Skip to content

Commit

Permalink
fix the compile error in debug mode.
Browse files Browse the repository at this point in the history
fix the compile error in debug mode.
  • Loading branch information
dongzhongshu authored Oct 11, 2024
1 parent fb032cd commit 93d16cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/Algorithm/LineSplit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ SplittedLine do_split_line(const ClipperZUtils::ZPath& path, const ExPolygons& c
}
for (const auto segment : node) {
for (const ClipperZUtils::ZPoint& sp : *segment) {
assert(!is_clip(sp.z()));
assert(!is_clip(sp));
result.emplace_back(to_point(sp), true, sp.z());
}
result.back().clipped = false; // Mark the end of the clipped line
Expand Down

0 comments on commit 93d16cb

Please sign in to comment.