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 a51e5ce commit 64d2714Copy full SHA for 64d2714
Changelog.txt
@@ -1,6 +1,7 @@
1
Version 6.1.6
2
- Added ability to double quote to include quotes in literal BASIC strings
3
- Allowed BASIC string constants to initialize other consts
4
+- Fixed a problem with declaring new types that are arrays of objects
5
- Implemented flush() for FATFS files (thanks to Ada)
6
- Improved some error messages
7
- In C++ output, treat unknown types in prints as generic
spinc.c
@@ -247,6 +247,9 @@ int
247
CheckedTypeSize(AST *type)
248
{
249
Module *P;
250
+ if (IsArrayType(type)) {
251
+ type = BaseType(type);
252
+ }
253
if (IsClassType(type)) {
254
P = GetClassPtr(type);
255
if (P && P->pendingvarblock) {
0 commit comments