mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
- renamed AST to ast and ABI to abi
- style fixes
This commit is contained in:
+4
-2
@@ -112,8 +112,10 @@ map<FixedHash<4>, FunctionTypePointer> ContractDefinition::interfaceFunctions()
|
||||
for (auto const& it: exportedFunctionList)
|
||||
exportedFunctions.insert(it);
|
||||
|
||||
solAssert(exportedFunctionList.size() == exportedFunctions.size(),
|
||||
"Hash collision at Function Definition Hash calculation");
|
||||
solAssert(
|
||||
exportedFunctionList.size() == exportedFunctions.size(),
|
||||
"Hash collision at Function Definition Hash calculation"
|
||||
);
|
||||
|
||||
return exportedFunctions;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user