Remove unused C error reporting code from bison grammar

This commit is contained in:
Nikita Lisitsa 2025-12-18 13:47:54 +03:00
parent 16680ad801
commit 1e6f601f00

View file

@ -18,17 +18,6 @@
%locations
%{
#include <stdio.h>
void yyerror(char const * s)
{
printf("error: %s\n", s);
}
%}
%code requires {
#include <pslang/ast/statement.hpp>