aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index 560dc98b..32c61585 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -1156,9 +1156,8 @@ void CommandLineInterface::outputCompilationResults()
}
else
{
- stringstream data;
- m_compiler->assemblyStream(data, contract, m_sourceCodes);
- createFile(m_compiler->filesystemFriendlyName(contract) + ".evm", data.str());
+ string ret = m_compiler->assemblyString(contract, m_sourceCodes);
+ createFile(m_compiler->filesystemFriendlyName(contract) + ".evm", ret));
}
}
else
@@ -1167,7 +1166,7 @@ void CommandLineInterface::outputCompilationResults()
if (m_args.count(g_argAsmJson)
cout << m_compiler->assemblyJSON(contract, m_sourceCodes);
else
- m_compiler->assemblyStream(cout, contract, m_sourceCodes);
+ cout << m_compiler->assemblyString(contract, m_sourceCodes);
}
}