mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
SSAValueTracker should only use nullptr for default values
This commit is contained in:
@@ -37,7 +37,7 @@ void SSAValueTracker::operator()(VariableDeclaration const& _varDecl)
|
||||
{
|
||||
if (_varDecl.variables.size() == 1)
|
||||
setValue(_varDecl.variables.front().name, _varDecl.value.get());
|
||||
else
|
||||
else if (!_varDecl.value)
|
||||
for (auto const& var: _varDecl.variables)
|
||||
setValue(var.name, nullptr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user