using smart pointers instead of normal ones for

easier setup of tests (to call setup() multiple
times without leaks)
This commit is contained in:
Karma Riuk
2025-07-11 11:16:16 +02:00
parent 826f4de77a
commit 2174781b77
7 changed files with 14 additions and 18 deletions

View File

@@ -6,6 +6,7 @@
namespace lexer {
struct lexer {
lexer(std::istream&);
std::istream& input;
char c = 0;
token::token next_token();