Removed redundant std.

This commit is contained in:
chriseth
2015-05-26 11:31:04 +02:00
parent 06890e5428
commit 7f55e26eb8
+1 -1
View File
@@ -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);