From 02d4198242ec3dacc7af31c9446c83adcf014de9 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Tue, 1 Sep 2015 11:19:02 +0200 Subject: removed get prefix style fixes --- libsolidity/Compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libsolidity/Compiler.h') 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. -- cgit