mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 18:27:58 -06:00
Yet another clang compiler warning suppressed.
This commit is contained in:
parent
2393d64a5a
commit
f61119e02f
3 changed files with 8 additions and 10 deletions
|
@ -678,6 +678,7 @@ static inline bool line_rounded_thick_segment_collision(
|
|||
return intersects;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static inline bool inside_interval(double low, double high, double p)
|
||||
{
|
||||
return p >= low && p <= high;
|
||||
|
@ -690,7 +691,6 @@ static inline bool interval_inside_interval(double outer_low, double outer_high,
|
|||
return inside_interval(outer_low, outer_high, inner_low) && inside_interval(outer_low, outer_high, inner_high);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static inline bool cyclic_interval_inside_interval(double outer_low, double outer_high, double inner_low, double inner_high, double length)
|
||||
{
|
||||
if (outer_low > outer_high)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue