Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information