Fix compilation error

This commit is contained in:
gaulouis 2016-12-09 16:09:30 +01:00
parent 3e97e64651
commit 9c70b3b4ac
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ int main(int , const char **) {
}
TParser parser(&tokens);
Ref<tree::ParseTree> tree = parser.main();
tree::ParseTree* tree = parser.main();
std::cout << tree->toStringTree(&parser) << std::endl << std::endl;