diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-03-15 00:20:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 00:20:51 +0800 |
commit | 59658afa30f434b3a2501c72d4a033af550462b0 (patch) | |
tree | f258c7e625cc28efffc67abef04b0e0d3b0cf111 /libsolidity/codegen/CompilerContext.h | |
parent | c3f07b5294893414fd8ed1a04972fe52426ec9a9 (diff) | |
parent | 51f9e350b152483968391757155189ed0880c755 (diff) | |
download | dexon-solidity-59658afa30f434b3a2501c72d4a033af550462b0.tar.gz dexon-solidity-59658afa30f434b3a2501c72d4a033af550462b0.tar.zst dexon-solidity-59658afa30f434b3a2501c72d4a033af550462b0.zip |
Merge pull request #3722 from ethereum/fixMods
Fix modifier lookup in libraries.
Diffstat (limited to 'libsolidity/codegen/CompilerContext.h')
-rw-r--r-- | libsolidity/codegen/CompilerContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerContext.h b/libsolidity/codegen/CompilerContext.h index cf626683..7b663277 100644 --- a/libsolidity/codegen/CompilerContext.h +++ b/libsolidity/codegen/CompilerContext.h @@ -130,7 +130,7 @@ public: void appendMissingLowLevelFunctions(); ABIFunctions& abiFunctions() { return m_abiFunctions; } - ModifierDefinition const& functionModifier(std::string const& _name) const; + ModifierDefinition const& resolveVirtualFunctionModifier(ModifierDefinition const& _modifier) const; /// Returns the distance of the given local variable from the bottom of the stack (of the current function). unsigned baseStackOffsetOfVariable(Declaration const& _declaration) const; /// If supplied by a value returned by @ref baseStackOffsetOfVariable(variable), returns |