aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/Compiler.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-08-22 18:43:19 +0800
committerGitHub <noreply@github.com>2017-08-22 18:43:19 +0800
commitf874fc28d1cb657b6d4e04fa9d93bd8d061f30c4 (patch)
treefb0f04a445940004a8a45e03bc98d149c5cc71a7 /libsolidity/codegen/Compiler.h
parent2c2ae74217521aae93b9c7b058ce8687046c648c (diff)
parent9897c56b2cacf162f8fd41d60e91b7f71863f8d5 (diff)
downloaddexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.tar
dexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.tar.gz
dexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.tar.bz2
dexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.tar.lz
dexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.tar.xz
dexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.tar.zst
dexon-solidity-f874fc28d1cb657b6d4e04fa9d93bd8d061f30c4.zip
Merge pull request #2772 from ethereum/cppcheck
Improvements found by Cppcheck (const/static functions and explicit constructors)
Diffstat (limited to 'libsolidity/codegen/Compiler.h')
-rw-r--r--libsolidity/codegen/Compiler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/codegen/Compiler.h b/libsolidity/codegen/Compiler.h
index eef078c1..8c63ea9c 100644
--- a/libsolidity/codegen/Compiler.h
+++ b/libsolidity/codegen/Compiler.h
@@ -51,9 +51,9 @@ public:
ContractDefinition const& _contract,
std::map<ContractDefinition const*, eth::Assembly const*> const& _contracts
);
- eth::Assembly const& assembly() { return m_context.assembly(); }
- eth::LinkerObject assembledObject() { return m_context.assembledObject(); }
- eth::LinkerObject runtimeObject() { return m_context.assembledRuntimeObject(m_runtimeSub); }
+ eth::Assembly const& assembly() const { return m_context.assembly(); }
+ eth::LinkerObject assembledObject() const { return m_context.assembledObject(); }
+ eth::LinkerObject runtimeObject() const { return m_context.assembledRuntimeObject(m_runtimeSub); }
/// @arg _sourceCodes is the map of input files to source code strings
/// @arg _inJsonFromat shows whether the out should be in Json format
Json::Value streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap(), bool _inJsonFormat = false) const