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 b64bf85 commit ac374bfCopy full SHA for ac374bf
Changelog.txt
@@ -1,3 +1,7 @@
1
+Version 6.6.1
2
+- Fixed function type usage in -2nu for some Spin method pointers
3
+- Updated copyright notices in COPYING.LIB
4
+
5
Version 6.6.0
6
- Added pc_key and pc_mouse to -gbrk
7
- Added missing !! and ! postfix operators for Spin2
expr.c
@@ -3594,7 +3594,7 @@ FuncNumResults(AST *functype)
3594
while (functype && functype->kind == AST_PTRTYPE) {
3595
functype = functype->left;
3596
}
3597
- if (!functype) {
+ if (!IsFunctionType(functype)) {
3598
return 1; // unknown return type
3599
3600
0 commit comments