diff options
author | Jesse Busman <jesse@jesbus.com> | 2018-06-28 23:43:09 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-06 19:05:06 +0800 |
commit | 3fcd62921ebcc8015d1d6829b818dea40e64e845 (patch) | |
tree | e23b2a0e564d749af408450619c5bf39ea1a4c54 /libsolidity/codegen/CompilerContext.cpp | |
parent | 13d3006376c826495bad8a4c648e68a359fa1b41 (diff) | |
download | dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.tar dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.tar.gz dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.tar.bz2 dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.tar.lz dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.tar.xz dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.tar.zst dexon-solidity-3fcd62921ebcc8015d1d6829b818dea40e64e845.zip |
Renamed FunctionType::hasEqualArgumentTypes to FunctionType::hasEqualParameterTypes
Diffstat (limited to 'libsolidity/codegen/CompilerContext.cpp')
-rw-r--r-- | libsolidity/codegen/CompilerContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerContext.cpp b/libsolidity/codegen/CompilerContext.cpp index 3b1b4ec0..71b615b8 100644 --- a/libsolidity/codegen/CompilerContext.cpp +++ b/libsolidity/codegen/CompilerContext.cpp @@ -411,7 +411,7 @@ FunctionDefinition const& CompilerContext::resolveVirtualFunction( if ( function->name() == name && !function->isConstructor() && - FunctionType(*function).hasEqualArgumentTypes(functionType) + FunctionType(*function).hasEqualParameterTypes(functionType) ) return *function; solAssert(false, "Super function " + name + " not found."); |