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
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2020-04-28 19:28:11 +0300
committerbubnikv <bubnikv@gmail.com>2020-04-28 19:28:11 +0300
commitef89c73fd557ea2f7b67f62f00360b76de62f370 (patch)
treefd6cc9dd6f5eed96bd3149ea0f75bfe22d375dc7
parentb8e02a54056dce138d17f7cc8449f3d8f88f6b5a (diff)
fixing a compilation issue on a buggy GCC on R-PIvb_ironing
-rw-r--r--src/libslic3r/Fill/FillRectilinear2.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libslic3r/Fill/FillRectilinear2.cpp b/src/libslic3r/Fill/FillRectilinear2.cpp
index e16d57ad6..b88520b55 100644
--- a/src/libslic3r/Fill/FillRectilinear2.cpp
+++ b/src/libslic3r/Fill/FillRectilinear2.cpp
@@ -133,11 +133,11 @@ struct SegmentIntersection
// 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.
enum SegmentIntersectionType : char {
- OUTER_LOW = 0,
- OUTER_HIGH = 1,
- INNER_LOW = 2,
- INNER_HIGH = 3,
- UNKNOWN = -1
+ UNKNOWN,
+ OUTER_LOW,
+ OUTER_HIGH,
+ INNER_LOW,
+ INNER_HIGH,
};
SegmentIntersectionType type { UNKNOWN };