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*>{}) |
||
---|---|---|
.. | ||
ConstantEvaluator.cpp | ||
ConstantEvaluator.h | ||
DeclarationContainer.cpp | ||
DeclarationContainer.h | ||
DocStringAnalyser.cpp | ||
DocStringAnalyser.h | ||
GlobalContext.cpp | ||
GlobalContext.h | ||
NameAndTypeResolver.cpp | ||
NameAndTypeResolver.h | ||
ReferencesResolver.cpp | ||
ReferencesResolver.h | ||
SyntaxChecker.cpp | ||
SyntaxChecker.h | ||
TypeChecker.cpp | ||
TypeChecker.h |