aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-05-26 17:29:41 +0800
committerchriseth <c@ethdev.com>2015-05-26 17:31:04 +0800
commitfbc331bd354ba0d0703ff8923e3c8dbd14f7a246 (patch)
tree21e88ff58537eab84c4ebaccd509952f487bf5da /libsolidity
parent964bcd6b857c48d084ac2cfe0cd395939da570f0 (diff)
downloaddexon-solidity-fbc331bd354ba0d0703ff8923e3c8dbd14f7a246.tar.gz
dexon-solidity-fbc331bd354ba0d0703ff8923e3c8dbd14f7a246.tar.zst
dexon-solidity-fbc331bd354ba0d0703ff8923e3c8dbd14f7a246.zip
Removed redundant std.
Diffstat (limited to 'libsolidity')
-rw-r--r--libsolidity/GasMeter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/GasMeter.cpp b/libsolidity/GasMeter.cpp
index c09849c0..5f442654 100644
--- a/libsolidity/GasMeter.cpp
+++ b/libsolidity/GasMeter.cpp
@@ -71,7 +71,7 @@ public:
/// Compares the gas computed by PathGasMeter for the given signature (but unknown arguments)
/// against the actual gas usage computed by the VM on the given set of argument variants.
- void testRunTimeGas(std::string const& _sig, vector<bytes> _argumentVariants)
+ void testRunTimeGas(string const& _sig, vector<bytes> _argumentVariants)
{
u256 gasUsed = 0;
FixedHash<4> hash(dev::sha3(_sig));