mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-22 04:28:05 +08:00
fixing a compilation issue on a buggy GCC on R-PI
This commit is contained in:
parent
b8e02a5405
commit
ef89c73fd5
@ -133,11 +133,11 @@ struct SegmentIntersection
|
|||||||
// but it could be intersected with OUTER_LOW, INNER_LOW, INNER_HIGH, OUTER_HIGH,
|
// but it could be intersected with OUTER_LOW, INNER_LOW, INNER_HIGH, OUTER_HIGH,
|
||||||
// and there may be more than one pair of INNER_LOW, INNER_HIGH between OUTER_LOW, OUTER_HIGH.
|
// and there may be more than one pair of INNER_LOW, INNER_HIGH between OUTER_LOW, OUTER_HIGH.
|
||||||
enum SegmentIntersectionType : char {
|
enum SegmentIntersectionType : char {
|
||||||
OUTER_LOW = 0,
|
UNKNOWN,
|
||||||
OUTER_HIGH = 1,
|
OUTER_LOW,
|
||||||
INNER_LOW = 2,
|
OUTER_HIGH,
|
||||||
INNER_HIGH = 3,
|
INNER_LOW,
|
||||||
UNKNOWN = -1
|
INNER_HIGH,
|
||||||
};
|
};
|
||||||
SegmentIntersectionType type { UNKNOWN };
|
SegmentIntersectionType type { UNKNOWN };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user