Renamed Parser.h -> LX_Parser.h

Was causing issues with intelisense in VSC due to a Windows.h file named Parser.h having priority
This commit is contained in:
Pasha Bibko
2025-08-19 15:23:27 +01:00
parent 5a658a9198
commit 7b445ed382
4 changed files with 8 additions and 2 deletions

6
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"files.associations":
{
"type_traits": "cpp"
}
}

View File

@@ -1,7 +1,7 @@
#include <Util.h>
#include <NodeTypes.h>
#include <Parser.h>
#include <LX_Parser.h>
#include <Lexer.h>
int main(int argc, char** argv)

View File

@@ -1,6 +1,6 @@
#include <Util.h>
#include <Parser.h>
#include <LX_Parser.h>
namespace PashaBibko::LXC::Internal
{