diff options
author | chriseth <chris@ethereum.org> | 2018-03-13 23:50:44 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-03-13 23:55:41 +0800 |
commit | 069b150e42d12f3f3736dd4af2d82881db244b66 (patch) | |
tree | 66c146443b7b4bce3f90669459af20d75748d577 /libsolidity/codegen/CompilerContext.h | |
parent | 8ad0fb3be3998cf509c6329f41428fcd8d0d7de5 (diff) | |
download | dexon-solidity-069b150e42d12f3f3736dd4af2d82881db244b66.tar.gz dexon-solidity-069b150e42d12f3f3736dd4af2d82881db244b66.tar.zst dexon-solidity-069b150e42d12f3f3736dd4af2d82881db244b66.zip |
Bugfix in virtual lookup for modifiers 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 |