mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update Types.cpp
This commit is contained in:
parent
e3853ec6d1
commit
eac47b1328
@ -1105,13 +1105,13 @@ TypePointer FunctionType::externalType() const
|
||||
|
||||
for (auto type: m_parameterTypes)
|
||||
{
|
||||
if(!type->externalType())
|
||||
if (!type->externalType())
|
||||
return TypePointer();
|
||||
paramTypes.push_back(type->externalType());
|
||||
}
|
||||
for (auto type: m_returnParameterTypes)
|
||||
{
|
||||
if(!type->externalType())
|
||||
if (!type->externalType())
|
||||
return TypePointer();
|
||||
retParamTypes.push_back(type->externalType());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user