From 355b324df46bc6569e0f3b8b0bc82b569e0d7e75 Mon Sep 17 00:00:00 2001 From: Stanislav Gromov Date: Sat, 30 Jan 2021 13:25:42 +0700 Subject: [PATCH] Skip warning ID 249 --- source/compiler/sc5.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/compiler/sc5.c b/source/compiler/sc5.c index 3302cfa..d72803f 100644 --- a/source/compiler/sc5.c +++ b/source/compiler/sc5.c @@ -206,7 +206,8 @@ static char *warnmsg[] = { /*245*/ "enum increment \"%s %d\" has no effect on zero value (symbol \"%s\")\n", /*246*/ "multiplication overflow in enum element declaration (symbol \"%s\")\n", /*247*/ "use of operator \"~\" on a \"bool:\" value always results in \"true\"\n", -/*248*/ "possible misuse of comma operator\n" +/*248*/ "possible misuse of comma operator\n", +/*249*/ "" }; static char *noticemsg[] = {