15.05.2014, 19:39
Most of the times, this warning is given if you return something and at the next line there is code.
Quote:
Originally Posted by Pawn Language Guide
unreachable code
The indicated code will never run, because an instruction before (above) it causes a jump out of the function, out of a loop or elsewhere. Look for return, break, continue and goto instructions above the indicated line. Unreachable code can also be caused by an endless loop above the indicated line. |