• 0
Sign in to follow this  
Followers 0

pawno\include\foreach.inc(392) : warning 219: local variable "t" shadows a variable at a preceding level

Question

pawno\include\foreach.inc(392) : warning 219: local variable "t" shadows a variable at a preceding level

Не могу понять как появился этот варнинг, ничего с инклудом не делал

stock Iter_ClearInternal(&count, array[], size)
{
    for(new i, t = size + 1; i < size; ++i) array[i] = t;// варнинг
    array[size] = size;
    count = 0;
    return 1;
}

 

Share this post


Link to post
Share on other sites

1 answer to this question

  • 1

Это значит что, переменная t перекрывает переменную с таким же именем, объявленную в другом месте. Чтобы избежать данного предупреждения, ты можешь изменить имя переменной, например на temp: 

stock Iter_ClearInternal(&count, array[], size)
{
    for(new i, temp = size + 1; i < size; ++i) array[i] = temp;
    array[size] = size;
    count = 0;
    return 1;
}

 

Share this post


Link to post
Share on other sites
This topic is now closed to further replies.
Sign in to follow this  
Followers 0

  • Recently Browsing   0 members

    No registered users viewing this page.

  • Similar Content

    • By def
      arizona.pwn(23374) : error 012: invalid function call, not a valid address
      arizona.pwn(23374) : error 001: expected token: ";", but found ")"
      arizona.pwn(23374) : error 029: invalid expression, assumed zero
      arizona.pwn(23374) : fatal error 107: too many error messages on one line
      жалуется на данную строчку:
       
      %s{cccccc}Для продолжения нажмите 'Далее'",PN(playerid),playerid,ItemsInfo[itemid][ItemName2],hours,cost*hours,Inventory[playerid][2][slot], AksColorName(Inventory[playerid][4][slot]), Inventory[playerid][5][slot] ? GetNameStripe(Inventory[playerid][5][slot]) : "");