mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #2860 from ethereum/noparamsfordefaulted
Remove parameter names for defaulted functions.
This commit is contained in:
commit
bf294253bb
@ -56,10 +56,10 @@ public:
|
||||
Expression(u256 const& _number): name(_number.str()) {}
|
||||
Expression(bigint const& _number): name(_number.str()) {}
|
||||
|
||||
Expression(Expression const& _other) = default;
|
||||
Expression(Expression&& _other) = default;
|
||||
Expression& operator=(Expression const& _other) = default;
|
||||
Expression& operator=(Expression&& _other) = default;
|
||||
Expression(Expression const&) = default;
|
||||
Expression(Expression&&) = default;
|
||||
Expression& operator=(Expression const&) = default;
|
||||
Expression& operator=(Expression&&) = default;
|
||||
|
||||
static Expression ite(Expression _condition, Expression _trueValue, Expression _falseValue)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user