Forbidding implicit conversions from an enum type to an integer

2019-04-02 Thread Per Nordlöw via Digitalmars-d-learn
Is there a way (compiler flag) to forbid implicit conversions from an enum type to integer types?

Re: Forbidding implicit conversions from an enum type to an integer

2019-04-02 Thread Dennis via Digitalmars-d-learn
On Tuesday, 2 April 2019 at 08:38:28 UTC, Per Nordlöw wrote: Is there a way (compiler flag) to forbid implicit conversions from an enum type to integer types? You can make the enum type not an integer type. ``` struct Int{int i;} enum E: Int { first = Int(0), second = Int(1), } ```

Re: Forbidding implicit conversions from an enum type to an integer

2019-04-02 Thread Per Nordlöw via Digitalmars-d-learn
On Tuesday, 2 April 2019 at 09:02:03 UTC, Dennis wrote: You can make the enum type not an integer type. ``` struct Int{int i;} enum E: Int { first = Int(0), second = Int(1), } ``` Thanks. Are there any plans on deprecating implicit conversions of enums to integers?

Re: Forbidding implicit conversions from an enum type to an integer

2019-04-02 Thread Dennis via Digitalmars-d-learn
On Tuesday, 2 April 2019 at 09:37:26 UTC, Per Nordlöw wrote: Are there any plans on deprecating implicit conversions of enums to integers? Not that I know of. Given the precedence of this: https://github.com/dlang/DIPs/blob/master/DIPs/rejected/DIP1015.md I doubt enum/integer-types are going to