Fix the include path in MainTranspile.cpp.

This commit is contained in:
Username404 2021-03-13 19:57:32 +01:00
parent 67ad3095dd
commit 1b3c135b03
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ pair<LANGUAGE, bool> validLanguage(const string& it) {
}
return pair<LANGUAGE, bool>(selected, valid);
}
#include "src/headers/parsing/ParseComponents.hpp"
#include "../headers/parsing/ParseComponents.hpp"
string transpile(ParseTree tree, string language)
{