aboutsummaryrefslogtreecommitdiffstats
path: root/Assembly.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-07-27 20:06:38 +0800
committerGav Wood <i@gavwood.com>2014-07-27 20:06:38 +0800
commit6f68842208e1025d3769cdea4829407e65b07744 (patch)
tree985c20bc9190283d77c7da44af62db77a2b5d1ba /Assembly.h
parented0209fefc50ab59b43b7f781410699c49445aab (diff)
downloaddexon-solidity-6f68842208e1025d3769cdea4829407e65b07744.tar.gz
dexon-solidity-6f68842208e1025d3769cdea4829407e65b07744.tar.zst
dexon-solidity-6f68842208e1025d3769cdea4829407e65b07744.zip
Avoid _asm from MSVC.
Diffstat (limited to 'Assembly.h')
-rw-r--r--Assembly.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assembly.h b/Assembly.h
index 581e1643..888b373c 100644
--- a/Assembly.h
+++ b/Assembly.h
@@ -80,7 +80,7 @@ public:
AssemblyItem const& append(AssemblyItem const& _i);
AssemblyItem const& append(std::string const& _data) { return append(newPushString(_data)); }
AssemblyItem const& append(bytes const& _data) { return append(newData(_data)); }
- AssemblyItem appendSubSize(Assembly const& _asm) { auto ret = newSub(_asm); append(newPushSubSize(ret.data())); return ret; }
+ AssemblyItem appendSubSize(Assembly const& _asmbly) { auto ret = newSub(_asmbly); append(newPushSubSize(ret.data())); return ret; }
AssemblyItem appendJump() { auto ret = append(newPushTag()); append(Instruction::JUMP); return ret; }
AssemblyItem appendJumpI() { auto ret = append(newPushTag()); append(Instruction::JUMPI); return ret; }