compiler fix to support the code block expression
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-11-10 02:59:41 +09:00
parent 5a28ab3749
commit 889d5d90ae
5 changed files with 92 additions and 33 deletions

View File

@ -457,7 +457,7 @@ static int on_fed_cnode_in_interactive_mode (hcl_t* hcl, hcl_cnode_t* obj)
static int on_fed_cnode_in_batch_mode (hcl_t* hcl, hcl_cnode_t* obj)
{
xtn_t* xtn = (xtn_t*)hcl_getxtn(hcl);
return hcl_compile(hcl, obj, xtn->extra_cflags);
return hcl_compile(hcl, obj, xtn->extra_cflags);
}
static int feed_loop (hcl_t* hcl, xtn_t* xtn, int verbose)