mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Initialize vars before use
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
This commit is contained in:
parent
983407762c
commit
93c8120a24
@ -540,8 +540,8 @@ void Scanner::scanToken()
|
|||||||
|
|
||||||
Token token;
|
Token token;
|
||||||
// M and N are for the purposes of grabbing different type sizes
|
// M and N are for the purposes of grabbing different type sizes
|
||||||
unsigned m;
|
unsigned m = 0;
|
||||||
unsigned n;
|
unsigned n = 0;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
// Remember the position of the next token
|
// Remember the position of the next token
|
||||||
|
Loading…
Reference in New Issue
Block a user