Fix ambiguous parse error in the following expression:
if constexpr (PiRatio::num / PiRatio::den < 1 && PiRatio::num / PiRatio::den > -1)
GCC-12 apparently interprets PiRatio::den < 1 && PiRatio::num / PiRatio::den > as a template expression, which it shouldn't. Help disambiguating this expression by putting parentheses around the division.
Fix ambiguous parse error in the following expression: if constexpr (PiRatio::num / PiRatio::den < 1 && PiRatio::num / PiRatio::den > -1)
GCC-12 apparently interprets
PiRatio::den < 1 && PiRatio::num / PiRatio::den >
as a template expression, which it shouldn't. Help disambiguating this expression by putting parentheses around the division.Closes #306