From ed9da5171b84e6e1846820a45d97e5c041d57206 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 18 Apr 2016 13:47:40 +0200 Subject: Source location for inline assembly. --- libsolidity/inlineasm/AsmCodeGen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libsolidity/inlineasm/AsmCodeGen.h') diff --git a/libsolidity/inlineasm/AsmCodeGen.h b/libsolidity/inlineasm/AsmCodeGen.h index f749ba50..aaabda45 100644 --- a/libsolidity/inlineasm/AsmCodeGen.h +++ b/libsolidity/inlineasm/AsmCodeGen.h @@ -48,7 +48,7 @@ public: /// If in rvalue context, the function is assumed to append instructions to /// push the value of the identifier onto the stack. On error, the function should return false. using IdentifierAccess = std::function; - CodeGenerator( Block const& _parsedData, ErrorList& _errors): + CodeGenerator(Block const& _parsedData, ErrorList& _errors): m_parsedData(_parsedData), m_errors(_errors) {} /// Performs type checks and @returns false on error. /// Actually runs the full code generation but discards the result. -- cgit