added memory freeing functions

main
Øyvind Skaaden 2022-02-27 19:13:53 +01:00
parent 10515c009a
commit 9cd417d5da
1 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ main ( int argc, char **argv )
options ( argc, argv ); options ( argc, argv );
yyparse(); // Generated from grammar/bison, constructs syntax tree yyparse(); // Generated from grammar/bison, constructs syntax tree
yylex_destroy(); // Free heap used by flex
if ( print_full_tree ) if ( print_full_tree )
print_syntax_tree (); print_syntax_tree ();