diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-26 19:11:54 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-03-02 18:51:13 +0800 |
commit | 47177542f54a29562d99b27554ed991f318c058a (patch) | |
tree | bec1cf6fb0c40f834f13e46463551bb53fae0a6e /Types.cpp | |
parent | 5e4665b84deda7943edf1fab0ab32c48c4629fac (diff) | |
download | dexon-solidity-47177542f54a29562d99b27554ed991f318c058a.tar.gz dexon-solidity-47177542f54a29562d99b27554ed991f318c058a.tar.zst dexon-solidity-47177542f54a29562d99b27554ed991f318c058a.zip |
Add structs to inheritable members
Diffstat (limited to 'Types.cpp')
-rw-r--r-- | Types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1024,7 +1024,7 @@ MemberList const& TypeType::getMembers() const vector<ContractDefinition const*> currentBases = m_currentContract->getLinearizedBaseContracts(); if (find(currentBases.begin(), currentBases.end(), &contract) != currentBases.end()) // We are accessing the type of a base contract, so add all public and protected - // functions. Note that this does not add inherited functions on purpose. + // members. Note that this does not add inherited functions on purpose. for (ASTPointer<Declaration> const& decl: contract.getInheritableMembers()) members.push_back(make_pair(decl->getName(), decl->getType())); } |