solidity/libsolidity
moneroexample 9d237fbfdc fix: error: call of overloaded ‘list(int, <brace-enclosed initializer list>)’
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*>{})
2016-05-17 13:27:39 +08:00
..
analysis fix: error: call of overloaded ‘list(int, <brace-enclosed initializer list>)’ 2016-05-17 13:27:39 +08:00
ast Remove unused tests and add asserts for not implemented parts in code generation. 2016-05-10 16:03:33 -05:00
codegen Remove unused tests and add asserts for not implemented parts in code generation. 2016-05-10 16:03:33 -05:00
formal Simplify interface of RationalNumber. 2016-05-10 19:40:37 +02:00
inlineasm Windows fix. 2016-04-21 16:13:39 +02:00
interface Make solidity independent from ethcore. 2016-04-06 20:56:00 +02:00
parsing updated algorithm for bit finding...now to figure out literal value 2016-05-09 11:41:03 -05:00
CMakeLists.txt Make solidity independent from ethcore. 2016-04-06 20:56:00 +02:00
grammar.txt throw statement implementation 2015-09-16 13:25:32 +02:00