cxgo
cxgo copied to clipboard
Support typed nil values
Currently cxgo fails on Nuklear due to the fact that we erase types for nil values:
typedef int ptrdiff_t;
#define NK_ALIGNOF(t) ((char*)(&((struct {char c; t _h;}*)0)->_h) - (char*)0)
int a = NK_ALIGNOF(int);