diff options
author | chriseth <c@ethdev.com> | 2016-04-18 19:47:40 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-04-20 00:35:21 +0800 |
commit | ed9da5171b84e6e1846820a45d97e5c041d57206 (patch) | |
tree | fd74dd485ded436d3b170be627087857396ea65d /libsolidity/inlineasm/AsmCodeGen.h | |
parent | 81ae2a78321fddcd2d32efc51568ebeca28866a8 (diff) | |
download | dexon-solidity-ed9da5171b84e6e1846820a45d97e5c041d57206.tar.gz dexon-solidity-ed9da5171b84e6e1846820a45d97e5c041d57206.tar.zst dexon-solidity-ed9da5171b84e6e1846820a45d97e5c041d57206.zip |
Source location for inline assembly.
Diffstat (limited to 'libsolidity/inlineasm/AsmCodeGen.h')
-rw-r--r-- | libsolidity/inlineasm/AsmCodeGen.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<bool(assembly::Identifier const&, eth::Assembly&, IdentifierContext)>; - 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. |