added default value to lexer field to avoid

compiler complaints
This commit is contained in:
Karma Riuk
2025-07-02 23:00:09 +02:00
parent 6181fc8d9f
commit 896b9001c7

View File

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