diff options
author | Dimitry <dimitry@ethdev.com> | 2016-04-04 19:41:35 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethdev.com> | 2016-04-04 19:41:35 +0800 |
commit | d2cee6f9c6babdf8c857e9860d68b6876d71a7eb (patch) | |
tree | c60a596054e999de8ad797e8af9b38598041d3fa /libsolidity/codegen/CompilerContext.h | |
parent | d43d4347bf1e37bb8f114c9df0e2ae62545fbc87 (diff) | |
download | dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.tar dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.tar.gz dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.tar.bz2 dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.tar.lz dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.tar.xz dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.tar.zst dexon-solidity-d2cee6f9c6babdf8c857e9860d68b6876d71a7eb.zip |
reduce unnecessary solidity:: namespace
Diffstat (limited to 'libsolidity/codegen/CompilerContext.h')
-rw-r--r-- | libsolidity/codegen/CompilerContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerContext.h b/libsolidity/codegen/CompilerContext.h index e987bcd8..9368dbcf 100644 --- a/libsolidity/codegen/CompilerContext.h +++ b/libsolidity/codegen/CompilerContext.h @@ -126,7 +126,7 @@ public: /// Append elements to the current instruction list and adjust @a m_stackOffset. CompilerContext& operator<<(eth::AssemblyItem const& _item) { m_asm.append(_item); return *this; } - CompilerContext& operator<<(solidity::Instruction _instruction) { m_asm.append(_instruction); return *this; } + CompilerContext& operator<<(Instruction _instruction) { m_asm.append(_instruction); return *this; } CompilerContext& operator<<(u256 const& _value) { m_asm.append(_value); return *this; } CompilerContext& operator<<(bytes const& _data) { m_asm.append(_data); return *this; } |