mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 03:43:52 +00:00
Fixing after merge.
This commit is contained in:
@@ -32,11 +32,11 @@ namespace ClipperUtils {
|
|||||||
public:
|
public:
|
||||||
struct iterator : public PathsProviderIteratorBase {
|
struct iterator : public PathsProviderIteratorBase {
|
||||||
public:
|
public:
|
||||||
constexpr const Points& operator*() { assert(false); return s_empty_points; }
|
const Points& operator*() { assert(false); return s_empty_points; }
|
||||||
// all iterators point to end.
|
// all iterators point to end.
|
||||||
constexpr bool operator==(const iterator &rhs) const { return true; }
|
constexpr bool operator==(const iterator &rhs) const { return true; }
|
||||||
constexpr bool operator!=(const iterator &rhs) const { return false; }
|
constexpr bool operator!=(const iterator &rhs) const { return false; }
|
||||||
constexpr const Points& operator++(int) { assert(false); return s_empty_points; }
|
const Points& operator++(int) { assert(false); return s_empty_points; }
|
||||||
constexpr iterator& operator++() { assert(false); return *this; }
|
constexpr iterator& operator++() { assert(false); return *this; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user