reaktivity / nukleus-maven-plugin

Nukleus Maven Plugin
Apache License 2.0
0 stars 10 forks source link

Enhance union to switch on enum #83

Closed jfallows closed 4 years ago

jfallows commented 5 years ago
enum NumericType
{
    WIDTH8,
    WIDTH4,
    WIDTH1
}

union UnionType switch (NumericType)
{
   case WIDTH8: UnsignedLong width8;
   case WIDTH4: UnsignedInteger width4;
   // more case statements ...
}
jfallows commented 4 years ago

Fixed by #109