fix compile errors

This commit is contained in:
IlyaShurupov 2024-02-08 19:16:56 +03:00 committed by Ilya Shurupov
parent b2a1883369
commit aaeb6438a1
27 changed files with 19 additions and 21 deletions

View file

@ -1,23 +0,0 @@
#include "Parser.hpp"
#include "Testing.hpp"
using namespace tp;
void testGrammar();
void testCLR();
int main(int argc, const char* argv[]) {
tp::ModuleManifest* deps[] = { &tp::gModuleParser, nullptr };
tp::ModuleManifest testModule("CommandLineTest", nullptr, nullptr, deps);
if (!testModule.initialize()) {
return 1;
}
testGrammar();
testCLR();
testModule.deinitialize();
return 0;
}