removed namespace

This commit is contained in:
bronku 2025-11-20 14:22:16 +01:00
parent 36396e97e9
commit 7e7d2a45b5
4 changed files with 24 additions and 33 deletions

View file

@ -6,18 +6,13 @@ namespace yy
class location;
}
namespace Elite
class ParserCtx
{
public:
ParserCtx();
~ParserCtx();
class ParserCtx
{
public:
ParserCtx();
~ParserCtx();
void *lexer;
yy::location *loc;
yy::Parser *parser;
};
} // namespace Elite
void *lexer;
yy::location *loc;
yy::Parser *parser;
};