aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm/Instruction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libevmasm/Instruction.cpp')
-rw-r--r--libevmasm/Instruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/Instruction.cpp b/libevmasm/Instruction.cpp
index 37c5fdd4..d5b82e75 100644
--- a/libevmasm/Instruction.cpp
+++ b/libevmasm/Instruction.cpp
@@ -330,7 +330,7 @@ void dev::solidity::eachInstruction(
u256 data;
// fill the data with the additional data bytes from the instruction stream
- while (additional > 0 && next(it) < _mem.end())
+ while (additional > 0 && std::next(it) < _mem.end())
{
data <<= 8;
data |= *++it;