cxgo icon indicating copy to clipboard operation
cxgo copied to clipboard

Support typed nil values

Open dennwc opened this issue 3 years ago • 0 comments

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);

dennwc avatar Aug 18 '21 09:08 dennwc