Core/Misc: Modernize comparison operators

(cherry picked from commit f0a862e71b)
This commit is contained in:
Shauren
2023-08-24 11:48:45 +02:00
parent 343d09bc95
commit 451314241d
21 changed files with 77 additions and 106 deletions

View File

@@ -146,7 +146,7 @@ BigNumber& BigNumber::operator<<=(int n)
return *this;
}
int BigNumber::CompareTo(BigNumber const& bn) const
int32 BigNumber::CompareTo(BigNumber const& bn) const
{
return BN_cmp(_bn, bn._bn);
}