We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83653de commit 2aac758Copy full SHA for 2aac758
frontends/common.c
@@ -1090,7 +1090,14 @@ Init()
1090
ast_type_generic_funcptr = GenericFunctionPtr(1);
1091
1092
// a generic function for Spin2 SEND type functionality
1093
- ast_type_sendptr = NewAST(AST_MODIFIER_SEND_ARGS, GenericFunctionPtr(0), NULL);
+ ast_type_sendptr = NewAST(AST_MODIFIER_SEND_ARGS,
1094
+ NewAST(AST_PTRTYPE,
1095
+ NewAST(AST_FUNCTYPE,
1096
+ ast_type_void,
1097
+ NewAST(AST_EXPRLIST,
1098
+ ast_type_long, NULL)),
1099
+ NULL),
1100
+ NULL);
1101
ast_type_recvptr = GenericFunctionPtr(1);
1102
1103
initSpinLexer(gl_p2);
0 commit comments