mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 15:13:58 -06:00
Fixing another clang complaint
This commit is contained in:
parent
c3cd2c7f55
commit
8a297be74e
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ static std::vector<std::vector<ExPolygons>> slices_to_regions(
|
||||||
int region_id;
|
int region_id;
|
||||||
ObjectID volume_id;
|
ObjectID volume_id;
|
||||||
bool empty() const { return region_id < 0 || expolygons.empty(); }
|
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 this_empty = this->empty();
|
||||||
bool rhs_empty = rhs.empty();
|
bool rhs_empty = rhs.empty();
|
||||||
// Sort the empty items to the end of the list.
|
// Sort the empty items to the end of the list.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue