1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-28 06:34:33 +01:00

Remove: LeastCommonMultiple / GreatestCommonDivisor

Use std::lcm / std::gcd instead.
This commit is contained in:
Rubidium
2024-01-20 15:59:53 +01:00
committed by rubidium42
parent 1403f24fa9
commit 4c51534b6a
3 changed files with 0 additions and 72 deletions

View File

@@ -309,8 +309,6 @@ inline uint ToPercent16(uint i)
return i * 101 >> 16;
}
int LeastCommonMultiple(int a, int b);
int GreatestCommonDivisor(int a, int b);
int DivideApprox(int a, int b);
/**