silence the clang warning about 'y=y'

This commit is contained in:
Zeno Rogue 2018-05-07 20:11:04 +02:00
parent e1675c55ee
commit c0d0a17c9d
1 changed files with 2 additions and 2 deletions

View File

@ -304,7 +304,7 @@ void applymodel(hyperpoint H, hyperpoint& ret) {
x *= 2; y *= 2;
break;
case gcEuclid:
y = y;
// y = y;
y *= 2; x *= 2;
break;
}