mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9d237fbfdc
Issue: https://github.com/ethereum/solidity/issues/574 Compilation of webthree-umbrella on Arch with gcc 6.1 results in the following error: /home/mwo/webthree-umbrella/solidity/libsolidity/analysis/NameAndTypeResolver.cpp:299:51: error: call of overloaded ‘list(int, <brace-enclosed initializer list>)’ is ambiguous list<list<ContractDefinition const*>> input(1, {}); This can be overcome by explicitly specifying initial value, for example: list<list<ContractDefinition const*>> input(1, list<ContractDefinition const*>{}) |
||
---|---|---|
.. | ||
analysis | ||
ast | ||
codegen | ||
formal | ||
inlineasm | ||
interface | ||
parsing | ||
CMakeLists.txt | ||
grammar.txt |