From 1cfa9649901a0093816f9afac403d7931ab560be Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Tue, 14 Apr 2015 11:38:36 +0200 Subject: style fixes --- CompilerContext.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'CompilerContext.h') diff --git a/CompilerContext.h b/CompilerContext.h index 3fcf0706..9c2156bf 100644 --- a/CompilerContext.h +++ b/CompilerContext.h @@ -122,8 +122,11 @@ public: eth::Assembly const& getAssembly() const { return m_asm; } /// @arg _sourceCodes is the map of input files to source code strings - /// @arg _inJsonFromat shows weather the out should be in Json format - void streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap(), bool _inJsonFormat = false) const { m_asm.stream(_stream, "", _sourceCodes, _inJsonFormat); } + /// @arg _inJsonFormat shows whether the out should be in Json format + void streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap(), bool _inJsonFormat = false) const + { + m_asm.stream(_stream, "", _sourceCodes, _inJsonFormat); + } bytes getAssembledBytecode(bool _optimize = false) { return m_asm.optimise(_optimize).assemble(); } -- cgit v1.2.3