diff options
author | Dimitry <dimitry@ethdev.com> | 2016-04-04 19:18:24 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethdev.com> | 2016-04-04 19:18:24 +0800 |
commit | 98165100658bc4f29e6194f0c5ede6e5b9d516f5 (patch) | |
tree | 31e3b6413c2928e527ecc03307f08818984dcd33 /libevmasm/AssemblyItem.h | |
parent | 858c41260d4cec26ba38ea3bd2ef71dcede63f7c (diff) | |
download | dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.gz dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.zst dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.zip |
enable solidity test
Diffstat (limited to 'libevmasm/AssemblyItem.h')
-rw-r--r-- | libevmasm/AssemblyItem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/AssemblyItem.h b/libevmasm/AssemblyItem.h index 9399fef4..1c3d9789 100644 --- a/libevmasm/AssemblyItem.h +++ b/libevmasm/AssemblyItem.h @@ -58,7 +58,7 @@ public: AssemblyItem(u256 _push, SourceLocation const& _location = SourceLocation()): AssemblyItem(Push, _push, _location) { } - AssemblyItem(Instruction _i, SourceLocation const& _location = SourceLocation()): + AssemblyItem(solidity::Instruction _i, SourceLocation const& _location = SourceLocation()): AssemblyItem(Operation, byte(_i), _location) { } AssemblyItem(AssemblyItemType _type, u256 _data = 0, SourceLocation const& _location = SourceLocation()): m_type(_type), |