This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rvijayc
Recipients mjpieters, rvijayc
Date 2018-12-02.21:46:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543787201.42.0.788709270274.issue35366@psf.upfronthosting.co.za>
In-reply-to
Content
Wanted to post a possible workaround until this is fixed. One can simply wrap a union anonymously inside a structure. Like so:

struct my_struct_s {
  union my_union_u {
    <original union contents>
  };
};

This temporarily solved the problem in my case.
History
Date User Action Args
2018-12-02 21:46:41rvijaycsetrecipients: + rvijayc, mjpieters
2018-12-02 21:46:41rvijaycsetmessageid: <1543787201.42.0.788709270274.issue35366@psf.upfronthosting.co.za>
2018-12-02 21:46:41rvijayclinkissue35366 messages
2018-12-02 21:46:41rvijayccreate