aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerContext.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-10 19:00:23 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-10 19:02:48 +0800
commitd5cbb2acd2ffd1323524cb1d7e596eb768518e3e (patch)
tree04f8ab33a7e89cabd7a5922158da2586d72734bf /CompilerContext.h
parent74a01826ee9587ef9413e2ec808fcd53564f0b9d (diff)
downloaddexon-solidity-d5cbb2acd2ffd1323524cb1d7e596eb768518e3e.tar.gz
dexon-solidity-d5cbb2acd2ffd1323524cb1d7e596eb768518e3e.tar.zst
dexon-solidity-d5cbb2acd2ffd1323524cb1d7e596eb768518e3e.zip
added brackets for printing in/out
cleaned up
Diffstat (limited to 'CompilerContext.h')
-rw-r--r--CompilerContext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerContext.h b/CompilerContext.h
index f468d29c..76923a77 100644
--- a/CompilerContext.h
+++ b/CompilerContext.h
@@ -120,7 +120,7 @@ public:
eth::Assembly const& getAssembly() const { return m_asm; }
/// @arg _sourceCodes is the map of input files to source code strings
- void streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap()) const { m_asm.streamRLP(_stream, "", _sourceCodes); }
+ void streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap()) const { m_asm.stream(_stream, "", _sourceCodes); }
bytes getAssembledBytecode(bool _optimize = false) { return m_asm.optimise(_optimize).assemble(); }