aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm/AssemblyItem.h
diff options
context:
space:
mode:
authorDimitry <dimitry@ethdev.com>2016-04-04 19:18:24 +0800
committerDimitry <dimitry@ethdev.com>2016-04-04 19:18:24 +0800
commit98165100658bc4f29e6194f0c5ede6e5b9d516f5 (patch)
tree31e3b6413c2928e527ecc03307f08818984dcd33 /libevmasm/AssemblyItem.h
parent858c41260d4cec26ba38ea3bd2ef71dcede63f7c (diff)
downloaddexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar
dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.gz
dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.bz2
dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.lz
dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.xz
dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.tar.zst
dexon-solidity-98165100658bc4f29e6194f0c5ede6e5b9d516f5.zip
enable solidity test
Diffstat (limited to 'libevmasm/AssemblyItem.h')
-rw-r--r--libevmasm/AssemblyItem.h2
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),