mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update libsolidity/codegen/ir/IRGeneratorForStatements.cpp
Co-authored-by: Hari <webmail.hari@gmail.com>
This commit is contained in:
parent
f9b9905c95
commit
3efe100179
@ -1944,9 +1944,9 @@ void IRGeneratorForStatements::endVisit(MemberAccess const& _memberAccess)
|
||||
else if (member == "typehash")
|
||||
{
|
||||
Type const* arg = dynamic_cast<MagicType const&>(*_memberAccess.expression().annotation().type).typeArgument();
|
||||
solAssert(arg != nullptr);
|
||||
solAssert(!arg);
|
||||
StructType const* structType = dynamic_cast<StructType const*>(arg);
|
||||
solAssert(structType != nullptr);
|
||||
solAssert(!structType);
|
||||
StructDefinition const& struct_ = structType->structDefinition();
|
||||
define(_memberAccess) << "0x" << toHex(struct_.typehash()) << "\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user