Fix compilation error with ARRAY inside FB

This commit is contained in:
Thiago Alves
2026-01-08 23:52:52 -05:00
committed by GitHub
parent f0d627a7f8
commit bb35f6966b

View File

@@ -117,6 +117,12 @@ typedef struct {\
} type;\
__DECLARE_COMPLEX_STRUCT(type)
#define __DECLARE_ARRAY_TYPE_WRAPPER(type, base, size)\
typedef struct {\
__IEC_##base##_t table size;\
} type;\
__DECLARE_COMPLEX_STRUCT(type)
#define __DECLARE_STRUCT_TYPE(type, elements)\
typedef struct {\
elements\