1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 11:40:38 +00:00

Fix to C++ errors due to empty parameters passed to FUNCTIONS.

- QB64 now warns users of syntax errors in cases such as a& = _RGB32(255, , 255)
This commit is contained in:
FellippeHeitor 2017-10-23 10:16:06 -02:00
parent 3f7a0a59d4
commit 5a84de731f

View file

@ -14792,6 +14792,7 @@ a$ = a2$
typ = -1
IF Debug THEN PRINT #9, "evaluating:[" + a2$ + "]"
IF a2$ = "" THEN Give_Error "Syntax error": EXIT FUNCTION