You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#define SIZE 3
//@json
struct jstruct_annotated_struct {
int some_field;
#define CANT_EXPAND_SOME_ARRAY
#ifndef CANT_EXPAND_SOME_ARRAY
unsigned int some_array[SIZE];
#endif
// ideally #else would work here too.
#ifdef CANT_EXPAND_SOME_ARRAY
unsigned int some_array_0;
unsigned int some_array_1;
unsigned int some_array_2;
#endif
}```
fails to parse.
The text was updated successfully, but these errors were encountered:
EG:
The text was updated successfully, but these errors were encountered: