The compiler does check for call sub calls:
For example there will be no warnings in this code:
B4X:
CallSub(Me, "Test")
Sub Test
End Sub
However there are cases where it cannot know the target sub and in those cases there will be a warning. The solution is simple. Add an 'ignore comment on that line.
The compiler does check for call sub calls:
For example there will be no warnings in this code:
B4X:
CallSub(Me, "Test")
Sub Test
End Sub
However there are cases where it cannot know the target sub and in those cases there will be a warning. The solution is simple. Add an 'ignore comment on that line.