Yet another clang compiler warning suppressed.

This commit is contained in:
Vojtech Bubnik 2021-02-09 20:04:11 +01:00
parent 2393d64a5a
commit f61119e02f
3 changed files with 8 additions and 10 deletions

View file

@ -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)