You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which gives the following output when the function is used:
D:\work\SA-MP\gamemodes\deprecated.pwn(42) : warning 234: function is deprecated (symbol "va_formatex") Use formatex instead
D:\work\SA-MP\gamemodes\deprecated.pwn(53) : warning 234: function is deprecated (symbol "va_formatex") Use formatex instead
There are blank lines placed between the error lines. I've tried a few ways to get rid of them - changing line endings and escaping them, but neither work. With no message, the spacing is correct:
Which gives the following output when the function is used:
D:\work\SA-MP\gamemodes\deprecated.pwn(42) : warning 234: function is deprecated (symbol "va_formatex")
D:\work\SA-MP\gamemodes\deprecated.pwn(53) : warning 234: function is deprecated (symbol "va_formatex")
The text was updated successfully, but these errors were encountered:
The reason why the new line does not appear when an empty string is passed to #pragma deprecated is because the code which skips white spaces also skips new lines (ASCII 0xA).
while (*lptr<=' ' && *lptr!='\0')
lptr++;
This issue exists with #error for the same reasons.
I have this:
Which gives the following output when the function is used:
There are blank lines placed between the error lines. I've tried a few ways to get rid of them - changing line endings and escaping them, but neither work. With no message, the spacing is correct:
Which gives the following output when the function is used:
The text was updated successfully, but these errors were encountered: