Update CI script

This commit is contained in:
2018-06-23 18:10:09 +01:00
parent 8997a07833
commit 5022f4385b
2 changed files with 6 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ void parse_input(char *input) {
printf("%s\n", input);
parser_print_node_tree(node, 0);
StatementList* list = parser_node_convert(node);
StatementList *list = parser_node_convert(node);
print_statement_list(list);
free_statement_list(list);
@@ -52,11 +52,8 @@ void parse_input(char *input) {
}
int main() {
#if defined(_WIN32) || defined(WIN32)
//Fix issues with debugging on windows
setbuf(stdout, 0);
setbuf(stderr, 0);
#endif
InputBuffer *buffer = input_buffer_new();