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
slice2cs 3.7 generates incorrect code for optional data members of exceptions - the optional members should be marshaled/unmarshaled after the non-optional members and sorted by tag.
For example:
exception A
{
string name;
optional(3) string another;
string m;
}
exception B extends A
{
int x;
optional(3) int y;
optional(1) int z;
}
The text was updated successfully, but these errors were encountered:
slice2cs 3.7 generates incorrect code for optional data members of exceptions - the optional members should be marshaled/unmarshaled after the non-optional members and sorted by tag.
For example:
The text was updated successfully, but these errors were encountered: