wc-duck / datalibrary

Open Source Data Library for data serialization.
Other
42 stars 8 forks source link

References to other values in enums #58

Open lundmark opened 6 years ago

lundmark commented 6 years ago

References to other values in enums, such as:

enum A { B };

enum C { D = B, };

wc-duck commented 6 years ago

This shouldn't be that hard... But I'm just curious, what is your usecase?

lundmark commented 6 years ago

Sorry that is a good point.

The idea is of course to be able to do things such as: D = ~B

or other bitfield manipulations with them.