Revert "Support for New Linux Build Server + glibc Wrapping"

This commit is contained in:
Jonathan Thomas
2023-05-01 15:39:49 -05:00
committed by GitHub
parent 8ab0cb4c7e
commit 64f9bb8524
3 changed files with 4 additions and 12 deletions

View File

@@ -65,9 +65,6 @@ int Fraction::GreatestCommonDenominator() {
void Fraction::Reduce() {
// Get the greatest common denominator
int GCD = GreatestCommonDenominator();
if (GCD == 0) {
return;
}
// Reduce this fraction to the smallest possible whole numbers
num = num / GCD;