diff options
author | chriseth <c@ethdev.com> | 2015-12-21 22:37:51 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-12-21 22:37:51 +0800 |
commit | 2466fb68a026869f2c3c9a5ae55b77535b7c03d7 (patch) | |
tree | 8c4c34398220449afb12e023feeb3e3c76cc14bd /libsolidity/ast | |
parent | 6f78998aaf0bafe9fc68ffa4d0d37f2364d6f81e (diff) | |
parent | 79c5d032fee1d9e96db9540dbafd312626d7711a (diff) | |
download | dexon-solidity-2466fb68a026869f2c3c9a5ae55b77535b7c03d7.tar.gz dexon-solidity-2466fb68a026869f2c3c9a5ae55b77535b7c03d7.tar.zst dexon-solidity-2466fb68a026869f2c3c9a5ae55b77535b7c03d7.zip |
Merge pull request #308 from chriseth/fixoverloadbug
Fix bug preventing overloads of different array types.
Diffstat (limited to 'libsolidity/ast')
-rw-r--r-- | libsolidity/ast/Types.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/ast/Types.cpp b/libsolidity/ast/Types.cpp index b8c004e2..2e9b56a1 100644 --- a/libsolidity/ast/Types.cpp +++ b/libsolidity/ast/Types.cpp @@ -831,6 +831,8 @@ bool ArrayType::operator==(Type const& _other) const other.isDynamicallySized() != isDynamicallySized() ) return false; + if (*other.baseType() != *baseType()) + return false; return isDynamicallySized() || length() == other.length(); } |