mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Make sure lValueOfOrdinaryAssignment does not have an undefined value.
This commit is contained in:
parent
25b10b9643
commit
20072918d9
@ -254,7 +254,7 @@ struct ExpressionAnnotation: ASTAnnotation
|
||||
/// Whether the expression is an lvalue that is only assigned.
|
||||
/// Would be false for --, ++, delete, +=, -=, ....
|
||||
/// Only relevant if isLvalue == true
|
||||
bool lValueOfOrdinaryAssignment;
|
||||
bool lValueOfOrdinaryAssignment = false;
|
||||
|
||||
/// Types and - if given - names of arguments if the expr. is a function
|
||||
/// that is called, used for overload resolution
|
||||
|
Loading…
Reference in New Issue
Block a user