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
But it seems that #if does not support ; either. It does not complain about it as strongly as #ifdef, but this does not work when RoyLord is undefined:
The above does not work because #ifndef doesn't support
;
at the end of lines.I was hoping to get this working:
This way I could do my definitions as such:
instead of:
But it seems that #if does not support
;
either. It does not complain about it as strongly as #ifdef, but this does not work whenRoyLord
is undefined:However, this identical version on multiple lines does work when
RoyLord
is undefined.They both work when
RoyLord
is defined.This feels like the sort of macro / feature that could be built in, so I thought I'd mention it here.
Additionally, I got some weird behaviour while I was trying to get this to work:
This works:
But this does not:
And this infinite loops:
I'm possibly doing something in a way that was not intended.
The text was updated successfully, but these errors were encountered: