diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-04-01 21:42:30 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-04-01 21:42:30 +0800 |
commit | eac47b13280f7edf2431f25d61d5dc1c3425f206 (patch) | |
tree | 8ed296d84ab3b1b1d164f5d6273f8c10f34e64e9 /Types.cpp | |
parent | e3853ec6d14119052a168c4b5031277c866fd0e0 (diff) | |
download | dexon-solidity-eac47b13280f7edf2431f25d61d5dc1c3425f206.tar.gz dexon-solidity-eac47b13280f7edf2431f25d61d5dc1c3425f206.tar.zst dexon-solidity-eac47b13280f7edf2431f25d61d5dc1c3425f206.zip |
Update Types.cpp
Diffstat (limited to 'Types.cpp')
-rw-r--r-- | Types.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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()); } |