1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-05 18:27:01 +00:00

bignum: operator >

This commit is contained in:
Zeno Rogue 2019-12-25 12:17:24 +01:00
parent 6c3348c9f3
commit e5e4db5ef1

View File

@ -303,6 +303,7 @@ struct bignum {
bignum(ld d);
bool operator < (const bignum&) const;
bool operator > (const bignum& b) const { return b < self; }
ld leading() const {
switch(isize(digits)) {