Added foundation for Lexer

This commit is contained in:
Pasha Bibko
2025-07-20 13:49:10 +01:00
parent 7768ba4522
commit 8f75e52a07
6 changed files with 47 additions and 4 deletions

View File

@@ -9,7 +9,9 @@ namespace LXC::Util
template<typename ErrorType> struct FunctionFail
{
explicit FunctionFail(ErrorType _err)
: error(_err) {}
: error(_err)
{
}
ErrorType error;
};