diff options
author | LianaHus <liana@ethdev.com> | 2015-09-01 17:19:02 +0800 |
---|---|---|
committer | LianaHus <liana@ethdev.com> | 2015-09-08 19:12:00 +0800 |
commit | 02d4198242ec3dacc7af31c9446c83adcf014de9 (patch) | |
tree | 6d000f103d2520ebec433c41726dd30350462d8b /libsolidity/Compiler.h | |
parent | 1b5e6fc9e76ad3cf30e6e7bfc0e868dbb5267ff4 (diff) | |
download | dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.tar dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.tar.gz dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.tar.bz2 dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.tar.lz dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.tar.xz dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.tar.zst dexon-solidity-02d4198242ec3dacc7af31c9446c83adcf014de9.zip |
removed get prefix
style fixes
Diffstat (limited to 'libsolidity/Compiler.h')
-rw-r--r-- | libsolidity/Compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/Compiler.h b/libsolidity/Compiler.h index f9b12a02..f283683f 100644 --- a/libsolidity/Compiler.h +++ b/libsolidity/Compiler.h @@ -59,9 +59,9 @@ public: return m_context.streamAssembly(_stream, _sourceCodes, _inJsonFormat); } /// @returns Assembly items of the normal compiler context - eth::AssemblyItems const& assemblyItems() const { return m_context.assembly().getItems(); } + eth::AssemblyItems const& assemblyItems() const { return m_context.assembly().items(); } /// @returns Assembly items of the runtime compiler context - eth::AssemblyItems const& runtimeAssemblyItems() const { return m_context.assembly().getSub(m_runtimeSub).getItems(); } + eth::AssemblyItems const& runtimeAssemblyItems() const { return m_context.assembly().sub(m_runtimeSub).items(); } /// @returns the entry label of the given function. Might return an AssemblyItem of type /// UndefinedItem if it does not exist yet. |