digitalmars.D.learn - Forbidding implicit conversions from an enum type to an integer
- Per =?UTF-8?B?Tm9yZGzDtnc=?= (2/2) Apr 02 2019 Is there a way (compiler flag) to forbid implicit conversions
- Dennis (9/11) Apr 02 2019 You can make the enum type not an integer type.
- Per =?UTF-8?B?Tm9yZGzDtnc=?= (4/12) Apr 02 2019 Thanks.
- Dennis (6/8) Apr 02 2019 Not that I know of. Given the precedence of this:
Is there a way (compiler flag) to forbid implicit conversions from an enum type to integer types?
Apr 02 2019
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), } ```
Apr 02 2019
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?
Apr 02 2019
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 get stricter. Is there a particular bug you encountered because of this conversion?
Apr 02 2019