diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-04-17 22:40:40 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-04-17 23:45:25 +0800 |
commit | e4808305a17f43392e03e29546494d464c5f0895 (patch) | |
tree | 4f778d824d61e4fd6e097ea739e3d2b1c86af8e3 /CompilerStack.cpp | |
parent | 1cfa9649901a0093816f9afac403d7931ab560be (diff) | |
download | dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.tar dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.tar.gz dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.tar.bz2 dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.tar.lz dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.tar.xz dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.tar.zst dexon-solidity-e4808305a17f43392e03e29546494d464c5f0895.zip |
removed unused parameter from streamAsmJson
Diffstat (limited to 'CompilerStack.cpp')
-rw-r--r-- | CompilerStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.cpp b/CompilerStack.cpp index 592f6127..d6274e2c 100644 --- a/CompilerStack.cpp +++ b/CompilerStack.cpp @@ -188,7 +188,7 @@ void CompilerStack::streamAssembly(ostream& _outStream, string const& _contractN { Contract const& contract = getContract(_contractName); if (contract.compiler) - contract(_contractName).compiler->streamAssembly(_outStream, _sourceCodes, _inJsonFormat); + contract.compiler->streamAssembly(_outStream, _sourceCodes, _inJsonFormat); else _outStream << "Contract not fully implemented" << endl; } |