Initialize vars before use

Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
This commit is contained in:
Peter Lemenkov 2022-07-01 12:09:08 +02:00
parent 983407762c
commit 93c8120a24

View File

@ -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