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
I use ilink binary schema.
For CmtaGiveUpCD enum it generates incorrect code for null value.
generated:
NULL_VAL((byte)48); //48=='0'
must be
NULL_VAL((byte)0);
it was working fine on 1.25.1 and got broken in 1.26