Merge pull request #6409 from ethereum/namespaceFix

Fix namespace.
This commit is contained in:
chriseth 2019-03-28 15:24:18 +01:00 committed by GitHub
commit 2005e70fb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}