Fix namespace.

This commit is contained in:
chriseth 2019-03-28 14:55:50 +01:00
parent 2b0c653f57
commit e82dcd1f91

View File

@ -637,7 +637,7 @@ int CodeTransform::appendPopUntil(int _targetDepth)
{
int const stackDiffAfter = m_assembly.stackHeight() - _targetDepth;
for (int i = 0; i < stackDiffAfter; ++i)
m_assembly.appendInstruction(solidity::Instruction::POP);
m_assembly.appendInstruction(dev::eth::Instruction::POP);
return stackDiffAfter;
}