mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #14010 from lemenkov/initialize_before_use
Initialize vars before use
This commit is contained in:
commit
9ace80c7ff
@ -540,8 +540,8 @@ void Scanner::scanToken()
|
||||
|
||||
Token token;
|
||||
// M and N are for the purposes of grabbing different type sizes
|
||||
unsigned m;
|
||||
unsigned n;
|
||||
unsigned m = 0;
|
||||
unsigned n = 0;
|
||||
do
|
||||
{
|
||||
// Remember the position of the next token
|
||||
|
Loading…
Reference in New Issue
Block a user