git » unicorn-sparkle-basic.git » commit 4b9acbd

Disable -Wall warnings for unused flex functions

author Alan Dipert
2024-01-05 04:33:20 UTC
committer Alan Dipert
2024-01-05 04:33:20 UTC
parent 3225fca2240b6e6efd2b5181f5fc51e38e8d02b5

Disable -Wall warnings for unused flex functions

bbasic.l +2 -0

diff --git a/bbasic.l b/bbasic.l
index 30e77b4..5a9b11b 100644
--- a/bbasic.l
+++ b/bbasic.l
@@ -2,6 +2,8 @@
 #include "bbasic.tab.h"
 %}
 
+%option nounput noinput
+
 %%
 
 [ \t]+              ; /* Ignore whitespaces */