1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 10:44:48 +00:00

arb:: fixed warning

This commit is contained in:
Zeno Rogue 2022-05-01 11:14:12 +02:00
parent 561a986b3d
commit edee92d877

View File

@ -472,7 +472,6 @@ EX void unmirror(arbi_tiling& c) {
}
static void reduce_gcd(int& a, int b) {
int nv = abs(gcd(a, b));
a = abs(gcd(a, b));
}