Removed redundant std.

This commit is contained in:
chriseth 2015-05-26 11:29:41 +02:00
parent 06890e5428
commit 7f55e26eb8

View File

@ -34,7 +34,7 @@ GasMeter::GasConsumption& GasMeter::GasConsumption::operator+=(GasConsumption co
if (isInfinite) if (isInfinite)
return *this; return *this;
bigint v = bigint(value) + _other.value; bigint v = bigint(value) + _other.value;
if (v > std::numeric_limits<u256>::max()) if (v > numeric_limits<u256>::max())
*this = infinite(); *this = infinite();
else else
value = u256(v); value = u256(v);