refactor(Core/Misc): abs() to std::abs() (#9789)

This commit is contained in:
Kitzunu
2021-12-31 23:29:39 +01:00
committed by GitHub
parent fe9305c724
commit ac99eb48e1
25 changed files with 60 additions and 60 deletions

View File

@@ -24,7 +24,7 @@ BigNumber::~BigNumber()
void BigNumber::SetDword(int32 val)
{
SetDword(uint32(abs(val)));
SetDword(uint32(std::abs(val)));
if (val < 0)
{
BN_set_negative(_bn, 1);