diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-04-14 17:38:36 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-04-17 23:41:50 +0800 |
commit | 1cfa9649901a0093816f9afac403d7931ab560be (patch) | |
tree | cb862bf27c322099e042a8e57571c4717ac7fba4 /Compiler.h | |
parent | f829dad7e385aa9578d56fe926a4741f9f90c105 (diff) | |
download | dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.tar dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.tar.gz dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.tar.bz2 dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.tar.lz dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.tar.xz dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.tar.zst dexon-solidity-1cfa9649901a0093816f9afac403d7931ab560be.zip |
style fixes
Diffstat (limited to 'Compiler.h')
-rw-r--r-- | Compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ public: bytes getAssembledBytecode() { return m_context.getAssembledBytecode(m_optimize); } bytes getRuntimeBytecode() { return m_runtimeContext.getAssembledBytecode(m_optimize);} /// @arg _sourceCodes is the map of input files to source code strings - /// @arg _inJsonFromat shows weather the out should be in Json format + /// @arg _inJsonFromat shows whether the out should be in Json format void streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap(), bool _inJsonFormat = false) const { m_context.streamAssembly(_stream, _sourceCodes, _inJsonFormat); |