• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] [SOLVED] How fix warning 217: loose indentation without Pragma Syntax?
#3
Example of 217 warning
Code:
stock my_function(arg1,arg2){
    new something = random(25);
something = arg1 * arg2; //warning loose indentation due to missing tab
    return something;
}

stock my_function(arg1,arg2)
{
    new something = random(25);
something = arg1 * arg2; //warning loose indentation due to missing tab
    return something;
}
  Reply


Messages In This Thread
RE: Help! How fix warning 217: loose indentation without Pragma Syntax? - by AbyssMorgan - 2021-05-15, 03:26 PM

Forum Jump: