Tagged Questions

6
votes
2answers
1k views

Why do I get “type has no typeinfo” error with an enum type

I have declared the following enum type in which I want the first member to have the ordinal value of 1 (one) rather than the usual 0 (zero): type TMyEnum = ( meFirstValue = 1, ...