removed comments?

This commit is contained in:
bronku 2025-11-21 10:27:58 +01:00
parent 6490ab759b
commit c01fbb784a

View file

@ -8,14 +8,13 @@
%code requires {
#include <string>
class Scanner; // Forward declaration
class Scanner;
}
%code {
#include <iostream>
#include "../src/scanner.hpp"
// Define yylex to use the scanner's lex method
#undef yylex
#define yylex scanner->lex
}