mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Removed redundant std.
This commit is contained in:
parent
06890e5428
commit
7f55e26eb8
@ -34,7 +34,7 @@ GasMeter::GasConsumption& GasMeter::GasConsumption::operator+=(GasConsumption co
|
||||
if (isInfinite)
|
||||
return *this;
|
||||
bigint v = bigint(value) + _other.value;
|
||||
if (v > std::numeric_limits<u256>::max())
|
||||
if (v > numeric_limits<u256>::max())
|
||||
*this = infinite();
|
||||
else
|
||||
value = u256(v);
|
||||
|
Loading…
Reference in New Issue
Block a user