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
path: root/src
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-05-25 21:03:05 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-05-25 21:03:05 +0300
commit8a297be74e5cfab7750324f5fa8b3fd7691016b8 (patch)
tree38547cbe8840119bd4cb309e7bcf185d97ac08cc /src
parentc3cd2c7f558d0296f53d9528a7b89830379f3aff (diff)
Fixing another clang complaint
Diffstat (limited to 'src')
-rw-r--r--src/libslic3r/PrintObjectSlice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/PrintObjectSlice.cpp b/src/libslic3r/PrintObjectSlice.cpp
index 892e93c7c..b2173367c 100644
--- a/src/libslic3r/PrintObjectSlice.cpp
+++ b/src/libslic3r/PrintObjectSlice.cpp
@@ -320,7 +320,7 @@ static std::vector<std::vector<ExPolygons>> slices_to_regions(
int region_id;
ObjectID volume_id;
bool empty() const { return region_id < 0 || expolygons.empty(); }
- bool operator<(const RegionSlice &rhs) {
+ bool operator<(const RegionSlice &rhs) const {
bool this_empty = this->empty();
bool rhs_empty = rhs.empty();
// Sort the empty items to the end of the list.