Y-Less

Results 405 comments of Y-Less

Or rahter that's a breaking change.

If you call it in `switch` before declaration the compiler thinks there's unmatched braces.

https://github.com/sampctl/pawn-array-return-bug/issues/1: ```pawn returnString() { return stringOrigin(); } ``` Compiles as: ```asm heap 30 push.alt push.c 0 call .stringOrigin pop.pri heap ffffffd0 load.s.alt c movs 30 ``` That allocates space on...

It would be good if `#pragma unused x` could suppress this warning as well: ```pawn REMOTE_FUNC__ static void:yrt_7(&a, &b, c, &d) { //print("yrt_7 called"); a = 8; b = a;...

What?

Yes. We need a working example of code. Code that works in the old compiler but doesn't work on this compiler.

That's still not a repro. We need some code to copy and paste. Put in a script and compile. That, as is, won't compile.

Furthermore: ```pawn //#pragma option -r main() { Func(); } /** * - documentation */ #pragma deprecated - message Func() {} ``` Output: ``` warning 234: function is deprecated (symbol "Func")...

I'm sure we discussed this not too long ago in discord. One thing I'd like is for named sections, where two sections given the same name count as the same...